Version 0.2.0
LÖVE Documentation
OverviewLicenceCreditsGetting started
Devices
love.objectslove.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timer
Types
AnimationColorFontImageMusicSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
love.graphics:drawCircle( xpos, ypos, radius, points, width )
Usage
love.graphics:drawCircle( xpos, ypos, radius, points, width )
Arguments
xposThe position on the x-axis.
yposThe position on the y-axis.
radiusThe radius of the circle.
pointsThe amount of points to use when drawing the circle.
widthThe width of the drawn lines (minimum: 1).
Returns
Nothing
Examples
Example 1: Draws a smooth circle with thick lines. love.graphics:drawCircle(100, 100, 50, 30, 4); -- thick lines