VecPoint3i.fromList constructor

VecPoint3i.fromList(
  1. List<Point3i> pts
)

Implementation

factory VecPoint3i.fromList(List<Point3i> pts) =>
    VecPoint3i.generate(pts.length, (i) => pts[i], dispose: false);