Coordinate constructor

Coordinate(
  1. double x,
  2. double y
)

Constructs a Coordinate at (x,y,NaN).

@param x the x-value @param y the y-value

Implementation

Coordinate(double x, double y) : this.fromXYZ(x, y, NULL_ORDINATE);