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:fillCircle( xpos, ypos, radius )
Note: The circle will be drawn using 10 points.
Usage
love.graphics:fillCircle( 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:fillCircle(100, 100, 50);