Grad constructor

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

Implementation

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