Difference between revisions of "love.graphics.rectangle"
Mcjohnalds45 (talk | contribs) (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.
Contents
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
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