Difference between revisions of "Shape:computeMass"

(Added Shape:computeMass.)
 
m
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=method}}
+
{{newin|[[0.8.0]]|080|type=function}}
 
Computes the mass properties for the shape with the specified density.
 
Computes the mass properties for the shape with the specified density.
  
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.}}
  

Latest revision as of 17:49, 29 May 2013

Available since LÖVE 0.8.0
This function 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