Difference between revisions of "B2.CircleShape.new"

From GiderosMobile
Line 12: Line 12:
 
(any), (any) = b2.CircleShape.new(centerx,centery,radius)
 
(any), (any) = b2.CircleShape.new(centerx,centery,radius)
 
</source>
 
</source>
'''centerx:''' (number, optional) the x coordinate of the center ''''''<br/>
+
'''centerx''': (number, optional) the x coordinate of the center ''''''<br/>
'''centery:''' (number, optional) the y coordinate of the center ''''''<br/>
+
'''centery''': (number, optional) the y coordinate of the center ''''''<br/>
'''radius:''' (number, optional) the radius ''''''<br/>
+
'''radius''': (number, optional) the radius ''''''<br/>
 
'''Returns''' (any) A new `b2.CircleShape` object.<br/>
 
'''Returns''' (any) A new `b2.CircleShape` object.<br/>
 
'''Returns''' (any) A new `b2.CircleShape` object.<br/>
 
'''Returns''' (any) A new `b2.CircleShape` object.<br/>

Revision as of 11:14, 23 August 2018

Available since: Gideros 2011.6

Description


Creates a new `b2.CircleShape` instance and optionally set its center point and radius.
If this function is called with more than 3 parameters, `b2.CircleShape` instance
is created and its center point and radius are set. If this function is called without any
paramaters, only `b2.CircleShape` instance is created and you should set the center
point and radius with b2.CircleShape:set function.

(any), (any) = b2.CircleShape.new(centerx,centery,radius)

'centerx: (number, optional) the x coordinate of the center '
'centery: (number, optional) the y coordinate of the center '
'radius: (number, optional) the radius '
Returns (any) A new `b2.CircleShape` object.
Returns (any) A new `b2.CircleShape` object.