Point constructor

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

Initialize a new point (coordinates assumed to be provide as radians)

Implementation

Point(this.x, this.y, this.z);