cvSubdivDelaunay2DInsert() приватный Метод

private cvSubdivDelaunay2DInsert ( IntPtr subdiv, PointF pt ) : IntPtr
subdiv IntPtr
pt PointF
Результат IntPtr
Пример #1
0
 /// <summary>
 /// Insert a point to the triangulation. If the point is already inserted, no changes will be made.
 /// </summary>
 /// <param name="point">The point to be inserted</param>
 public void Insert(PointF point)
 {
     CvInvoke.cvSubdivDelaunay2DInsert(_ptr, point);
     _isVoronoiDirty = true;
 }