Difference between revisions of "B2.Body:getWorldVector"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2012.09.6<br/> === Description === <br /> Returns the world coordinates of a vector given the local coordinates. <br /> <br /> <source...")
 
Line 6: Line 6:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
(number) (number), = b2.Body:getWorldVector(xy,)
+
(number), (number) = b2.Body:getWorldVector(x,y)
 
</source>
 
</source>
'''x:''' (number) x coordinate of the local vector ''''''<br/>
+
'''x''': (number) x coordinate of the local vector ''''''<br/>
'''y:''' (number) y coordinate of the local vector ''''''<br/>
+
'''y''': (number) y coordinate of the local vector ''''''<br/>
 
'''Returns''' (number) x vector of the provided vector expressed in world coordinates<br/>
 
'''Returns''' (number) x vector of the provided vector expressed in world coordinates<br/>
 
'''Returns''' (number) x vector of the provided vector expressed in world coordinates<br/>
 
'''Returns''' (number) x vector of the provided vector expressed in world coordinates<br/>

Revision as of 11:20, 23 August 2018

Available since: Gideros 2012.09.6

Description


Returns the world coordinates of a vector given the local coordinates.

(number), (number) = b2.Body:getWorldVector(x,y)

'x: (number) x coordinate of the local vector '
'y: (number) y coordinate of the local vector '
Returns (number) x vector of the provided vector expressed in world coordinates
Returns (number) x vector of the provided vector expressed in world coordinates