Body:getLinearVelocityFromWorldPoint
Get the linear velocity of a point on the body.
The linear velocity for a point on the body is the velocity of the body center of mass plus the velocity at that point from the body spinning.
The point on the body must given in world coordinates. Use Body:getLinearVelocityFromLocalPoint to specify this with local coordinates.
Function
Synopsis
vx, vy = Body:getLinearVelocityFromWorldPoint( x, y )
Arguments
number x
- The x position to measure velocity.
number y
- The y position to measure velocity.
Returns
number vx
- The x component of velocity at point (x,y).
number vy
- The y component of velocity at point (x,y).
Please login to continue.