Point3 constructor

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

Creates a new Point3 with the given coordinates.

Implementation

factory Point3(double x, double y, double z) =>
    Point3.zero()..setValues(x, y, z);