Point

Struct for representing a point.

Constructors

this
this(real x, real y, real z)
Undocumented in source.

Members

Functions

opAssign
void opAssign(Point rhs)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
void opOpAssign(Point rhs)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

x
real x;

Point.x is the 'x' coordinate of the point.

y
real y;

Point.y is the 'y' coordinate of the point.

z
real z;

Point.z is the 'z' coordinate of the point.

Meta