Difference between revisions of "Body:getMassData"

(Added Body:getMassData.)
 
(See also addition.)
Line 16: Line 16:
 
== See Also ==
 
== See Also ==
 
* [[parent::Body]]
 
* [[parent::Body]]
 +
* [[Body:setMassData]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Returns the mass, its center, and the rotational inertia.}}
 
{{#set:Description=Returns the mass, its center, and the rotational inertia.}}

Revision as of 22:54, 12 April 2012

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

Returns the mass, its center, and the rotational inertia.

Function

Synopsis

x, y, mass, inertia = Body:getMassData( )

Arguments

None.

Returns

number x
The x position of the center of mass.
number y
The y position of the center of mass.
number mass
The mass of the body.
number inertia
The rotational inertia.

See Also


Other Languages