Difference between revisions of "love.graphics.arc (Français)"

(Fixing parent.)
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newin (Français)|[[0.8.0]]|080|type=function}}
  
Dessiner un arc.
+
Dessine un arc.
  
 
== Fonction ==
 
== Fonction ==
Line 35: Line 35:
 
</source>
 
</source>
  
== Voir aussi ==
+
== Voir également ==
 
* [[parent::love.graphics (Français)]]
 
* [[parent::love.graphics (Français)]]
[[Category:Functions]]
+
[[Category:Functions (Français)]]
{{#set:Description=Draws an arc.}}
+
{{#set:Description=Dessine un arc.}}
  
== Autres Langues ==
+
== Autres langues ==
 
{{i18n|love.graphics.arc}}
 
{{i18n|love.graphics.arc}}

Revision as of 19:57, 27 December 2020

Disponible depuis LÖVE 0.8.0
Ce-tte function n'est pas supporté-e par des versions plus anciennes.


Dessine 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

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

Voir également


Autres langues