CoordinateXY.fromXY constructor

CoordinateXY.fromXY(
  1. double x,
  2. double y
)

Constructs a CoordinateXY instance with the given ordinates.

@param x the X ordinate @param y the Y ordinate

Implementation

CoordinateXY.fromXY(double x, double y)
    : super.fromXYZ(x, y, Coordinate.NULL_ORDINATE);