nextEdge method
Returns next edge around the edge origin.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#a36ebf478e2546615c2db457106393acb
Implementation
int nextEdge(int edge) {
return using<int>((arena) {
final p = arena<ffi.Int>();
cvRun(() => cimgproc.Subdiv2D_NextEdge(ref, edge, p));
return p.value;
});
}