insert method

int insert(
  1. Point2f pt
)

Implementation

int insert(Point2f pt) {
  final p = calloc<ffi.Int>();
  cvRun(() => cimgproc.cv_Subdiv2D_insert(ref, pt.ref, p, ffi.nullptr));
  final rval = p.value;
  calloc.free(p);
  return rval;
}