copy method

Coordinate3 copy()

@return {!goog.math.Coordinate3} A new copy of this Coordinate3.

Implementation

Coordinate3 copy()
{
  return new Coordinate3(this.x, this.y, this.z);
}