insertVec method

void insertVec(
  1. VecPoint2f pv
)

Insert a single point into a Delaunay triangulation.

The function locates the input point within the subdivision and gives one of the triangle edges or vertices.

https://docs.opencv.org/4.x/df/dbf/classcv_1_1Subdiv2D.html#a18a6c9999210d769538297d843c613f2

Implementation

void insertVec(VecPoint2f pv) {
  return using<void>((arena) {
    cvRun(() => cimgproc.Subdiv2D_InsertVec(ref, pv.ref));
  });
}