public struct Point
Point with x and y value
public double x
x value
public double y
y value
public this( double my_x, double my_y)
Constructor taking x and y value
public this(string value)
Constructor taking a string holding the x and y value separated by a comma
public bool opEquals(in Point point) const
Test whether two points are equal to each other
double