Difference between revisions of "B2.Body:getWorldPoint"

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

Revision as of 11:16, 23 August 2018

Available since: Gideros 2012.09.6

Description


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

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

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