Function
love.graphics.circle( mode, x, y, radius, segments )
Draws a circle.
Synopsis
love.graphics.circle( mode, x, y, radius, segments )
Parameters
mode DrawMode How to draw the circle.
x number The position of the center along x-axis.
y number The position of the center corner along y-axis.
radius number The radius of the circle.
segments = 8 number The number of segments used for drawing the circle.
Examples
An amazing circle.
  1. function love.draw()
  2.     love.graphics.circle("fill", 300, 300, 50)
  3. end
Copyright © 2006-2010 LÖVE Development Team.