Difference between revisions of "love.graphics.rectangle"

(Explained an example)
m (Add newin info.)
Line 1: Line 1:
 +
{{newin|[[0.3.2]]|032|type=function}}
 
Draws a rectangle.
 
Draws a rectangle.
 
== Function ==
 
== Function ==

Revision as of 09:55, 22 March 2015

Available since LÖVE 0.3.2
This function is not supported in earlier versions.

Draws a rectangle.

Function

Synopsis

love.graphics.rectangle( mode, x, y, width, height )

Arguments

DrawMode mode
How to draw the rectangle.
number x
The position of top-left corner along x-axis.
number y
The position of top-left corner along y-axis.
number width
Width of the rectangle.
number height
Height of the rectangle.

Returns

Nothing.

Examples

Draws a rectangle at 20,50 with a width of 60 and a height of 120

 love.graphics.rectangle("fill", 20, 50, 60, 120 )

See Also


Other Languages