Point3 constructor

const Point3({
  1. required num x,
  2. required num y,
  3. num z = 0.0,
})

A point at given x, y and z (z is zero by default).

Implementation

const Point3({required super.x, required super.y, this.z = 0.0});