CoordinateXYZM constructor

CoordinateXYZM(
  1. double x,
  2. double y,
  3. double z,
  4. double m,
)

Constructs a CoordinateXYZM instance with the given ordinates and measure.

@param x the X ordinate @param y the Y ordinate @param z the Z ordinate @param m the M measure value

Implementation

CoordinateXYZM(double x, double y, double z, double m)
    : super.fromXYZ(x, y, z) {
  this.m = m;
}