love.graphics:drawCircle( xpos, ypos, radius )
Note: The circle will be drawn using 10 points.
Usage
love.graphics:drawCircle( xpos, ypos, radius )Arguments
xposThe position on the x-axis.
yposThe position on the y-axis.
radiusThe radius of the circle.
Returns
Nothing
Examples
Example 1: Draws a circle.
love.graphics:drawCircle(100, 100, 50);