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}} |
− | + | Dessine un arc. | |
== Fonction == | == Fonction == | ||
Line 35: | Line 35: | ||
</source> | </source> | ||
− | == Voir | + | == Voir également == |
* [[parent::love.graphics (Français)]] | * [[parent::love.graphics (Français)]] | ||
− | [[Category:Functions]] | + | [[Category:Functions (Français)]] |
− | {{#set:Description= | + | {{#set:Description=Dessine un arc.}} |
− | == Autres | + | == 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.
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
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