Difference between revisions of "Body:getLocalVector"

m (1 revision: Imported docs from potato.)
Line 1: Line 1:
  
 
+
Transform a vector from world coordinates to local coordinates.
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 15: Line 15:
 
* [[parent::Body]]
 
* [[parent::Body]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=}}
+
{{#set:Description=Transform a vector from world coordinates to local coordinates.}}

Revision as of 16:17, 14 February 2010

Transform a vector from world coordinates to local coordinates.

Function

Synopsis

local_x, local_y = Body:getLocalVector( world_x, world_y )

Arguments

number world_x
The vector x component in world coordinates.
number world_y
The vector y component in world coordinates.

Returns

number local_x
The vector x component in local coordinates.
number local_y
The vector y component in local coordinates.

See Also