Difference between revisions of "love.physics.newCircleShape"

(Added 0.8.0 variant.)
(Oh, there are two new variants.)
Line 2: Line 2:
  
 
== Function ==
 
== Function ==
{{newin|[[0.8.0]]|type=variant}}
+
{{newin|[[0.8.0]]|type=variants|plural=yes}}
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
Line 8: Line 8:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 +
{{param|number|radius|The radius of the circle.}}
 +
=== Returns ===
 +
{{param|CircleShape|shape|The new shape.}}
 +
 +
== Function ==
 +
=== Synopsis ===
 +
<source lang="lua">
 +
shape = love.physics.newCircleShape( x, y, radius )
 +
</source>
 +
=== Arguments ===
 +
{{param|number|x|The x position of the circle.}}
 +
{{param|number|y|The y position of the circle.}}
 
{{param|number|radius|The radius of the circle.}}
 
{{param|number|radius|The radius of the circle.}}
 
=== Returns ===
 
=== Returns ===

Revision as of 21:26, 9 April 2012

Creates a circle shape.

Function

Available since LÖVE 0.8.0
These variants are not supported in earlier versions.

Synopsis

shape = love.physics.newCircleShape( radius )

Arguments

number radius
The radius of the circle.

Returns

CircleShape shape
The new shape.

Function

Synopsis

shape = love.physics.newCircleShape( x, y, radius )

Arguments

number x
The x position of the circle.
number y
The y position of the circle.
number radius
The radius of the circle.

Returns

CircleShape shape
The new shape.

Function

Removed in LÖVE 0.8.0
This variant is not supported in that and later versions.

Synopsis

shape = love.physics.newCircleShape( body, x, y, radius )

Arguments

Body body
The body to attach the shape to.
number x
The x offset of the circle.
number y
The y offset of the circle.
number radius
The radius of the circle.

Returns

CircleShape shape
A new CircleShape.

See Also


Other Languages