VecVecPoint3f.fromList constructor

VecVecPoint3f.fromList(
  1. List<List<Point3f>> pts
)

Implementation

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