Skip to content

Commit

Permalink
Docs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 27, 2024
1 parent 7fbbba0 commit 3ed3b95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Docs/DelaunayTriangulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Delaunay criterium or an In-Circle test is perhaps the most essential test of an
If you need to determine if a point _p4_ lies inside the triangle _p1, p2, p3_, you can do so by calling this method. Note that the triangle needs to be oriented counter-clockwise to get the expected result.

<!-- snippet: IncircleTest -->
```cs
DelaunayTriangulation.InCircle(p1, p2, p3, p4);
```
<!-- endSnippet -->

This method returns _true_ if the point lies outside the circumcircle and the Delaunay criterium is therefore satisfied.
Expand Down

0 comments on commit 3ed3b95

Please sign in to comment.