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

(Created page with "{{newin|0.8.0|080|type=function}} Dessiner un arc. == Fonction == === Synopsis === <source lang="lua"> love.graphics.arc( mode, x, y, radius, angle1, angle2, segments ) </s...")
 
(Fixing parent.)
Line 36: Line 36:
  
 
== Voir aussi ==
 
== Voir aussi ==
* [[parent::love.graphics]]
+
* [[parent::love.graphics (Français)]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Draws an arc.}}
 
{{#set:Description=Draws an arc.}}

Revision as of 06:39, 28 January 2013

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

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 aussi


Autres Langues