Difference between revisions of "B2.CircleShape.new"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
<languages />
 
<languages />
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]]<br/>
+
'''Class:''' [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]]<br/>
=== <translate>Description</translate> ===
+
 
<translate><br />
+
=== Description ===
Creates a new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance and optionally set its center point and radius.<br />
+
Creates a new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance and optionally set its center point and radius.
If this function is called with more than 3 parameters, [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance<br />
+
 
is created and its center point and radius are set. If this function is called without any <br />
+
If this function is called with more than 3 parameters, [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance is created and its center point and radius are set. If this function is called without any paramaters, only [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance is created and you should set the center point and radius with [[b2.CircleShape:set]] function.
paramaters, only [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] instance is created and you should set the center<br />
 
point and radius with [[b2.CircleShape:set]] function.<br />
 
<br /></translate>
 
 
<source lang="lua">
 
<source lang="lua">
 
(any), (any) = b2.CircleShape.new(centerx,centery,radius)
 
(any), (any) = b2.CircleShape.new(centerx,centery,radius)
 
</source>
 
</source>
=== <translate>Parameters</translate> ===
+
 
'''centerx''': (number, optional) <translate>the x coordinate of the center</translate> <br/>
+
=== Parameters ===
'''centery''': (number, optional) <translate>the y coordinate of the center</translate> <br/>
+
'''centerx''': (number, optional) the x coordinate of the center <br/>
'''radius''': (number, optional) <translate>the radius</translate> <br/>
+
'''centery''': (number, optional) the y coordinate of the center <br/>
=== <translate>Return values</translate> ===
+
'''radius''': (number, optional) the radius <br/>
'''<translate>Returns</translate>''' (any) <translate>A new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] object.</translate><br/>
+
 
'''<translate>Returns</translate>''' (any) <translate>A new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] object.</translate><br/>
+
=== Return values ===
 +
'''Returns''' (any) A new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] object.<br/>
 +
'''Returns''' (any) A new [[Special:MyLanguage/b2.CircleShape|b2.CircleShape]] object.<br/>
 +
 
 +
{{B2.CircleShape}}

Revision as of 08:20, 17 February 2020


Available since: Gideros 2011.6
Class: b2.CircleShape

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)

Parameters

centerx: (number, optional) the x coordinate of the center
centery: (number, optional) the y coordinate of the center
radius: (number, optional) the radius

Return values

Returns (any) A new b2.CircleShape object.
Returns (any) A new b2.CircleShape object.




LiquidFun