Difference between revisions of "love.graphics.circle"

m (1 revision: Importing from potato (again).)
(list of draw modes added)
Line 7: Line 7:
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|DrawMode|mode|How to draw the circle.}}
+
{{param|DrawMode|mode|How to draw the circle. Possible values are: "fill","line"}}
 
{{param|number|x|The position of the center along x-axis.}}
 
{{param|number|x|The position of the center along x-axis.}}
 
{{param|number|y|The position of the center corner along y-axis.}}
 
{{param|number|y|The position of the center corner along y-axis.}}
 
{{param|number|radius|The radius of the circle.}}
 
{{param|number|radius|The radius of the circle.}}
 
{{param|number|segments (8)|The number of segments used for drawing the circle.}}
 
{{param|number|segments (8)|The number of segments used for drawing the circle.}}
 +
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Revision as of 15:07, 1 September 2010

Draws a circle.

Function

Synopsis

love.graphics.circle( mode, x, y, radius, segments )

Arguments

DrawMode mode
How to draw the circle. Possible values are: "fill","line"
number x
The position of the center along x-axis.
number y
The position of the center corner along y-axis.
number radius
The radius of the circle.
number segments (8)
The number of segments used for drawing the circle.

Returns

Nothing.

Examples

An amazing circle.

function love.draw()
	love.graphics.circle("fill", 300, 300, 50)
end

See Also