VecPoint3f constructor

VecPoint3f([
  1. int length = 0,
  2. double x = 0,
  3. double y = 0,
  4. double z = 0,
])

Implementation

factory VecPoint3f([int length = 0, double x = 0, double y = 0, double z = 0]) =>
    VecPoint3f.generate(length, (i) => Point3f(x, y, z));