setCoordinate method

void setCoordinate(
  1. Coordinate other
)
override

Sets this Coordinates (x,y,z) values to that of other.

@param other the Coordinate to copy

Implementation

void setCoordinate(Coordinate other) {
  x = other.x;
  y = other.y;
  z = other.getZ();
  m = other.getM();
}