IPoint

Integer 2D point.

This is typically used for specifying exact pixel coordinates.

Constructors

this
this(int x, int y)

Constructs a IPoint with the spefcified coordinates

this
this(int[2] coords)

Constructs a IPoint with the spefcified coordinates

Members

Functions

isZero
bool isZero()

returns true if x and y are both zero

Variables

x
int x;

Undocumented in source.

y
int y;

Undocumented in source.

Meta