Difference between revisions of "Fixture:getBoundingBox"

m
(Text tweak)
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 childern 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.
  
 
== Function ==
 
== Function ==
Line 8: Line 8:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|index (1)|The fixture child to get the bounding box of.}}
+
{{param|number|index (1)|A bounding box of the fixture.}}
 
=== Returns ===
 
=== Returns ===
 
{{param|number|topLeftX|The x position of the top-left point.}}
 
{{param|number|topLeftX|The x position of the top-left point.}}

Revision as of 04:06, 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.

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