Coordinate.fromCoordinate constructor

Coordinate.fromCoordinate(
  1. Coordinate c
)

Constructs a Coordinate having the same (x,y,z) values as other.

@param c the Coordinate to copy.

Implementation

Coordinate.fromCoordinate(Coordinate c) : this.fromXYZ(c.x, c.y, c.getZ());