Rect

2D rectangle

Constructors

this
this(Scalar x0, Scalar y0, Scalar x1, Scalar y1)

Constructs a Rect with the spefcified coordinates

Members

Functions

area
Scalar area()

Returns the area of the rectangle

asPath
auto asPath()

Returns a PathIterator for traversing the rectangle.

center
Point center()

Returns the center of the rectangle

height
Scalar height()

Returns the height of the rectangle

isEmpty
bool isEmpty()

Returns true if (x0 >= x1) or (y0 >= y1)

opBinary
Rect opBinary(Scalar[2] rhs)

operator overload for add, subtract or multiply.

opBinary
Rect opBinary(Point rhs)

operator overload for add, subtract or multiply.

opBinary
Rect opBinary(Scalar rhs)

operator overload for multiply

width
Scalar width()

Returns the width of the rectangle

Variables

x0
Scalar x0;

Undocumented in source.

x1
Scalar x1;

Undocumented in source.

y0
Scalar y0;

Undocumented in source.

y1
Scalar y1;

Undocumented in source.

Meta