Browse Source

Update doc.

Former-commit-id: b4e143c184101c97c178fabf256225c28fb88f06
Qingnan Zhou 8 years ago
parent
commit
d8848b2a9a
1 changed files with 9 additions and 1 deletions
  1. 9 1
      include/igl/delaunay_triangulation.h

+ 9 - 1
include/igl/delaunay_triangulation.h

@@ -19,7 +19,15 @@ namespace igl
   //
   // Inputs:
   //   V  #V by 2 list of vertex positions
-  //
+  //   orient2D  A functor such that orient2D(pa, pb, pc) returns
+  //               1 if pa,pb,pc forms a conterclockwise triangle.
+  //              -1 if pa,pb,pc forms a clockwise triangle.
+  //               0 if pa,pb,pc are collinear.
+  //              where the argument pa,pb,pc are of type Scalar[2].
+  //   incircle  A functor such that incircle(pa, pb, pc, pd) returns
+  //               1 if pd is on the positive size of circumcirle of (pa,pb,pc)
+  //              -1 if pd is on the positive size of circumcirle of (pa,pb,pc)
+  //               0 if pd is cocircular with pa, pb, pc.
   // Outputs:
   //   F  #F by 3 of faces in Delaunay triangulation.
   template<