IRect

Integer 2D rectangle.

This is typically used for specifying rectanges in exact pixel coordinates. Like clip regions, or Window position, etc.

Constructors

this
this(int left, int top, int right, int bottom)

Constructs a IRect with the spefcified coordinates

Members

Functions

height
int height()

returns the height of the rectangle

isEmpty
bool isEmpty()

returns true if left > = right, or top >= bottom

width
int width()

returns the width of the rectangle

Variables

bottom
int bottom;

Undocumented in source.

left
int left;

Undocumented in source.

right
int right;

Undocumented in source.

top
int top;

Undocumented in source.

Meta