Fixture:getBoundingBox

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.

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