getLeadingEdgeList method
Returns a list of the leading edge ID connected to each triangle.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#a2d02a1d66ef7f8f267beb549cb2823f1
Implementation
VecI32 getLeadingEdgeList() {
final pv = calloc<cvg.VecI32>();
cvRun(() => cimgproc.cv_Subdiv2D_getLeadingEdgeList(ref, pv, ffi.nullptr));
return VecI32.fromPointer(pv);
}