edgeDst method
Returns the edge destination.
https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#aee192f95bf19c74619641496c457586d
Implementation
(int rval, Point2f dstpt) edgeDst(int edge) {
return using<(int, Point2f)>((arena) {
final pp = calloc<cvg.Point2f>();
final p = arena<ffi.Int>();
cvRun(() => cffi.Subdiv2D_EdgeDst(ref, edge, pp, p));
return (p.value, Point2f.fromPointer(pp));
});
}