nextEdge method

int nextEdge(
  1. int edge
)

Implementation

int nextEdge(int edge) {
  return using<int>((arena) {
    final p = arena<ffi.Int>();
    cvRun(() => cimgproc.Subdiv2D_NextEdge(ref, edge, p));
    return p.value;
  });
}