Point3.create constructor

const Point3.create({
  1. required num x,
  2. required num y,
  3. num? z,
  4. num? m,
})

A point from parameters compatible with CreatePosition function type.

Implementation

// ignore: avoid_unused_constructor_parameters
const Point3.create({required num x, required num y, num? z, num? m})
    : this(x: x, y: y, z: z ?? 0.0);