Difference between revisions of "love.graphics.circle"
m |
|||
Line 24: | Line 24: | ||
[[Category:Functions]] | [[Category:Functions]] | ||
{{#set:Description=Draws a circle.}} | {{#set:Description=Draws a circle.}} | ||
+ | {{#set:Since=000}} | ||
== Other Languages == | == Other Languages == | ||
{{i18n|love.graphics.circle}} | {{i18n|love.graphics.circle}} |
Revision as of 10:14, 25 March 2011
Draws a circle.
Contents
Function
Synopsis
love.graphics.circle( mode, x, y, radius, segments )
Arguments
DrawMode mode
- How to draw the circle.
number x
- The position of the center along x-axis.
number y
- The position of the center corner along y-axis.
number radius
- The radius of the circle.
number segments (8)
- The number of segments used for drawing the circle.
Returns
Nothing.
Examples
An amazing circle.
function love.draw()
love.graphics.circle("fill", 300, 300, 50)
end
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info