Views
love.graphics.arc (Français)
Available since LÖVE 0.8.0 |
This function is not supported in earlier versions. |
Dessiner un arc.
Fonction
Synopsis
love.graphics.arc( mode, x, y, radius, angle1, angle2, segments )
Arguments
DrawMode mode
- Comment dessiner l'arc.
number x
- La position du centre le long de l'axe x.
number y
- La position du centre le long de l'axe y.
number radius
- Radius de l'arc.
number angle1
- L'angle par lequel l'arc commence.
number angle2
- L'angle par lequel l'arc se termine.
number segments (10)
- Le nombre de segments utilisé pour dessiner l'arc.
Retourne
Rien.
Exemples
Dessiner la moitié d'un cercle
function love.draw( )
love.graphics.arc( "fill", 400, 300, 100, 0, math.pi )
end
love.graphics.arc( "fill", 400, 300, 100, 0, math.pi )
end
Dessiner Pacman
pacwidth = math.pi / 6 -- taille de la bouche
function love.draw( )
love.graphics.setColor( 255, 255, 0 ) -- pacman doit être jaune
love.graphics.arc( "fill", 400, 300, 100, pacwidth, (math.pi * 2) - pacwidth )
end
function love.draw( )
love.graphics.setColor( 255, 255, 0 ) -- pacman doit être jaune
love.graphics.arc( "fill", 400, 300, 100, pacwidth, (math.pi * 2) - pacwidth )
end
Voir aussi
Autres Langues
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