Difference between revisions of "Fixture:getBoundingBox"

(Text tweak)
(Example of children)
 
Line 1: Line 1:
 
{{newin|[[0.8.0]]|080|type=method}}
 
{{newin|[[0.8.0]]|080|type=method}}
Returns the points of the fixture bounding box. In case the fixture has multiple children a 1-based index can be specified.
+
Returns the points of the fixture bounding box. In case the fixture has multiple children a 1-based index can be specified. For example, a fixture will have multiple children with a chain shape.
  
 
== Function ==
 
== Function ==

Latest revision as of 04:15, 25 August 2015

Available since LÖVE 0.8.0
This method is not supported in earlier versions.

Returns the points of the fixture bounding box. In case the fixture has multiple children a 1-based index can be specified. For example, a fixture will have multiple children with a chain shape.

Function

Synopsis

topLeftX, topLeftY, bottomRightX, bottomRightY = Fixture:getBoundingBox( index )

Arguments

number index (1)
A bounding box of the fixture.

Returns

number topLeftX
The x position of the top-left point.
number topLeftY
The y position of the top-left point.
number bottomRightX
The x position of the bottom-right point.
number bottomRightY
The y position of the bottom-right point.

See Also


Other Languages