Version 0.3.2
LÖVE Documentation
OverviewLicenseCreditsInstallingGetting started
Devices
love.graphicslove.audiolove.keyboardlove.mouselove.filesystemlove.timerlove.system
Types
AnimationColorFontFileImageMusicParticleSystemSound
Callbacks
loadupdatedrawmousepressedmousereleasedkeypressedkeyreleased
Miscellaneous
ConstantsConfig filesKeyboard shortcuts
Function
love.graphics.circle( type, x, y, radius )
Usage
love.graphics.circle( type, x, y, radius )
Arguments
typeThe type of circle (outline/filled).
xThe position on the x-axis.
yThe position on the y-axis.
radiusRadius of the circle.
Returns
Nothing
Examples
Example 1: Draw two circles. love.graphics.circle(love.draw_line, 200,200, 50) -- outline
love.graphics.circle(love.draw_fill, 200,200, 50) -- filled