Difference between revisions of "love.graphics.circle"

m
m (A little circle edit)
Line 17: Line 17:
 
<source lang="lua">
 
<source lang="lua">
 
function love.draw()
 
function love.draw()
love.graphics.circle("fill", 300, 300, 50)
+
love.graphics.circle( "fill", 300, 300, 50, 100 )
 
end
 
end
 
</source>
 
</source>

Revision as of 17:01, 27 May 2013

Draws a circle.

Function

Synopsis

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

Arguments

DrawMode mode
How to draw the circle.
number x
The position of the center along x-axis.
number y
The position of the center along y-axis.
number radius
The radius of the circle.
number segments (max(10, radius))
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, 100 )
end

See Also


Other Languages