copyToList method

List<List<Point2f>> copyToList()

Implementation

List<List<Point2f>> copyToList() => List.generate(
  length,
  (i) => List.generate(
    ccore.std_VecVecPoint2f_length_i(ptr, i),
    (j) => Point2f.fromPointer(ccore.std_VecVecPoint2f_get_ij(ptr, i, j)),
  ),
);