Difference between revisions of "love.graphics.triangle"

m (1 revision: Importing from potato (again).)
Line 1: Line 1:
 
 
Draws a triangle.
 
Draws a triangle.
 
== Function ==
 
== Function ==
Line 20: Line 19:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Draws a triangle.}}
 
{{#set:Description=Draws a triangle.}}
 +
== Other Languages ==
 +
{{i18n|love.graphics.triangle}}

Revision as of 20:26, 18 November 2010

Draws a triangle.

Function

Synopsis

love.graphics.triangle( mode, x1, y1, x2, y2, x3, y3 )

Arguments

DrawMode mode
How to draw the triangle.
number x1
The position of first point on the x-axis.
number y1
The position of first point on the y-axis.
number x2
The position of second point on the x-axis.
number y2
The position of second point on the y-axis.
number x3
The position of third point on the x-axis.
number y3
The position of third point on the y-axis.

Returns

Nothing.

See Also

Other Languages