Difference between revisions of "love.graphics.arc (Français)"
(→Trace un rectangle avec des angles arrondis) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 32: | Line 32: | ||
love.graphics.setColor( 255, 255, 0 ) -- pacman doit être jaune | love.graphics.setColor( 255, 255, 0 ) -- pacman doit être jaune | ||
love.graphics.arc( "fill", 400, 300, 100, pacwidth, (math.pi * 2) - pacwidth ) | love.graphics.arc( "fill", 400, 300, 100, pacwidth, (math.pi * 2) - pacwidth ) | ||
+ | end | ||
+ | </source> | ||
+ | |||
+ | |||
+ | === Trace un rectangle avec des côtés arrondis === | ||
+ | <source lang="lua"> | ||
+ | quartcircle = math.pi / 2 -- définit une constante correspondant au quart d'un angle | ||
+ | function love.draw( ) | ||
+ | love.graphics.setColor( .7, .7, 1 ) -- Couleur bleuté | ||
+ | love.graphics.line( 200, 100, 600, 100 ) | ||
+ | love.graphics.line( 200, 300, 600, 300 ) | ||
+ | -- Les angles sont dans le sens horaire, comme la valeur en y grandit vers le bas | ||
+ | love.graphics.arc( "line", "open", 200, 200, 100, quartcircle, math.pi+quartcircle ) | ||
+ | love.graphics.arc( "line", "open", 600, 200, 100, -quartcircle, quartcircle) | ||
end | end | ||
</source> | </source> | ||
Line 38: | Line 52: | ||
* [[parent::love.graphics (Français)]] | * [[parent::love.graphics (Français)]] | ||
[[Category:Functions (Français)]] | [[Category:Functions (Français)]] | ||
+ | [[Sub-Category::Drawing (Français)| ]] | ||
{{#set:Description=Dessine un arc.}} | {{#set:Description=Dessine un arc.}} | ||
{{#set:Since=080}} | {{#set:Since=080}} | ||
== Autres langues == | == Autres langues == | ||
{{i18n|love.graphics.arc}} | {{i18n|love.graphics.arc}} |
Latest revision as of 21:06, 26 March 2022
Disponible depuis LÖVE 0.8.0 |
Ce-tte function n'est pas supporté-e par des versions plus anciennes. |
Dessine un arc.
Contents
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
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
Trace un rectangle avec des côtés arrondis
quartcircle = math.pi / 2 -- définit une constante correspondant au quart d'un angle
function love.draw( )
love.graphics.setColor( .7, .7, 1 ) -- Couleur bleuté
love.graphics.line( 200, 100, 600, 100 )
love.graphics.line( 200, 300, 600, 300 )
-- Les angles sont dans le sens horaire, comme la valeur en y grandit vers le bas
love.graphics.arc( "line", "open", 200, 200, 100, quartcircle, math.pi+quartcircle )
love.graphics.arc( "line", "open", 600, 200, 100, -quartcircle, quartcircle)
end
Voir également
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