Difference between revisions of "love.graphics.rectangle"

Line 13: Line 13:
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
 +
 +
== Modes ==
 +
fill - fills the rectangle
 +
line - only draws an outline
 +
 +
== Examples ==
 +
<source lang="lua">
 +
love.graphics.rectangle(fill, 50, 50, 60, 120 )
 +
</source>
 +
 
== See Also ==
 
== See Also ==
 
* [[parent::love.graphics]]
 
* [[parent::love.graphics]]

Revision as of 11:32, 4 January 2013

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.

Modes

fill - fills the rectangle line - only draws an outline

Examples

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

See Also


Other Languages