The OpenD Programming Language

Point

Point with x and y value

Constructors

this
this(double my_x, double my_y)

Constructor taking x and y value

this
this(string value)

Constructor taking a string holding the x and y value separated by a comma

Members

Functions

opEquals
bool opEquals(Point point)

Test whether two points are equal to each other

Variables

x
double x;

x value

y
double y;

y value

Meta