Point

2D Point.

Floating point 2D point.

Constructors

this
this(Scalar x, Scalar y)

Constructs a Point with the spefcified coordinates

this
this(Scalar[2] coords)

Constructs a Point with the spefcified coordinates

Members

Functions

isZero
bool isZero()

returns true if x and y are both zero

opBinary
Point opBinary(Point rhs)

operator overload for add, subtract or multiply.

opBinary
Point opBinary(T rhs)

operator overload for add, subtract or multiply.

opBinary
Point opBinary(T[2] rhs)

operator overload for add, subtract or multiply.

Variables

x
Scalar x;

Undocumented in source.

y
Scalar y;

Undocumented in source.

Meta