VecVecPoint2f.fromList constructor

VecVecPoint2f.fromList(
  1. List<List<Point2f>> pts
)

Implementation

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