Difference between revisions of "Body:getLocalVector"

m
 
Line 4: Line 4:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
local_x, local_y = Body:getLocalVector( world_x, world_y )
+
localX, localY = Body:getLocalVector( worldX, worldY )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|world_x|The vector x component in world coordinates.}}
+
{{param|number|worldX|The vector x component in world coordinates.}}
{{param|number|world_y|The vector y component in world coordinates.}}
+
{{param|number|worldY|The vector y component in world coordinates.}}
 
=== Returns ===
 
=== Returns ===
{{param|number|local_x|The vector x component in local coordinates.}}
+
{{param|number|localX|The vector x component in local coordinates.}}
{{param|number|local_y|The vector y component in local coordinates.}}
+
{{param|number|localY|The vector y component in local coordinates.}}
  
 
== See Also ==
 
== See Also ==

Latest revision as of 10:10, 26 January 2016

Transform a vector from world coordinates to local coordinates.

Function

Synopsis

localX, localY = Body:getLocalVector( worldX, worldY )

Arguments

number worldX
The vector x component in world coordinates.
number worldY
The vector y component in world coordinates.

Returns

number localX
The vector x component in local coordinates.
number localY
The vector y component in local coordinates.

See Also


Other Languages