Difference between revisions of "Shape:computeMass"

(Added Shape:computeMass.)
 
m
Line 11: Line 11:
 
=== Returns ===
 
=== Returns ===
 
{{param|number|x|The x postition of the center of mass.}}
 
{{param|number|x|The x postition of the center of mass.}}
{{param|number|y|The x postition of the center of mass.}}
+
{{param|number|y|The y postition of the center of mass.}}
 
{{param|number|mass|The mass of the shape}}
 
{{param|number|mass|The mass of the shape}}
 
{{param|number|inertia|The rotational inertia.}}
 
{{param|number|inertia|The rotational inertia.}}

Revision as of 18:37, 15 May 2012

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

Computes the mass properties for the shape with the specified density.

Function

Synopsis

x, y, mass, inertia = Shape:computeMass( density )

Arguments

number density
The shape density.

Returns

number x
The x postition of the center of mass.
number y
The y postition of the center of mass.
number mass
The mass of the shape
number inertia
The rotational inertia.

See Also


Other Languages