RectF
Rectangle type.
| Type | table |
This type defines a simple integer rectangle class. The containment semantics are array-like; that is, the coordinate (x, y) is considered to be contained by the rectangle, but the coordinate (x + width, y) is not.
This type is represented by a table with x, y, width, height
properties.
window:setbounds{x=11, y=24, width=100, height=100}
When a function accepts RectF as its last parameter, you can simply
unpack the properties:
window:setbounds(11, 24, 100, 100)
Properties
number x
X coordinate.
number y
Y coordinate.
number width
Rectangle width.
number height
Rectangle height.