Coordinate3 constructor

Coordinate3(
  1. double x,
  2. double y,
  3. double z
)

Implementation

Coordinate3(double x, double y, double z)
{
  this.x = x;
  this.y = y;
  this.z = z;
}