Difference between revisions of "Body:getLinearVelocity"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 +
Gets the linear velocity of the Body from its center of mass.
 +
 +
The linear velocity is the ''rate of change of position over time''.
 +
 +
 +
If you need the ''rate of change of angle over time'', use [[Body:getAngularVelocity]].
 +
If you need to get the linear velocity of a point different from the center of mass:
 +
 +
*  [[Body:getLinearVelocityFromLocalPoint]] allows you to specify the point in local coordinates.
 +
*  [[Body:getLinearVelocityFromWorldPoint]] allows you to specify the point in world coordinates.
 +
 +
See [http://books.google.es/books?id=g0-G2Dbk5vEC&lpg=PA250&ots=H6T6pJsOqu&dq=%22Essential%20Mathematics%20for%20Games%20and%20Interactive%20Applications%20local%20space&pg=PA136#v=onepage&q=&f=false page 136 or "Essential Mathematics for Games and Interactive Applications"] for definitions of local and world coordinates.
  
 
== Function ==
 
== Function ==
Line 14: Line 26:
 
* [[parent::Body]]
 
* [[parent::Body]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Gets the linear velocity of the Body from its center of mass.
 +
}}

Revision as of 16:17, 14 February 2010

Gets the linear velocity of the Body from its center of mass.

The linear velocity is the rate of change of position over time.


If you need the rate of change of angle over time, use Body:getAngularVelocity. If you need to get the linear velocity of a point different from the center of mass:

See page 136 or "Essential Mathematics for Games and Interactive Applications" for definitions of local and world coordinates.

Function

Synopsis

x, y = Body:getLinearVelocity( )

Arguments

None.

Returns

number x
The x-component of the velocity vector
number y
The y-component of the velocity vector

See Also