### Edge Case Debugging Example Source: https://github.com/designengrlab/miconvexhull/blob/master/Examples/2TestEXE for MIConvexHull-No Interfaces/edge case to debug1.txt This C# code snippet demonstrates an edge case for MIConvexHull triangulation, setting up vertices and performing Delaunay triangulation. ```csharp const int NumberOfVertices = 4; var vertices = new double[NumberOfVertices][]; vertices[0] = new[] {0.0, 0.0}; vertices[1] = new[] {0.0, -2.0}; vertices[2] = new[] {-0.70710678118654746, -1.5}; vertices[3] = new[] {-0.70710678118654746, -0.5}; var div = Triangulation.CreateDelaunay(vertices); Console.WriteLine(); ``` -------------------------------- ### Package Information Source: https://github.com/designengrlab/miconvexhull/blob/master/packages/PropertyTools.Wpf.2015.2.0/README.md License, project page, and NuGet information for the PropertyTools.Wpf package. ```text License: The MIT License (MIT) Project page: https://github.com/objorke/PropertyTools/ NuGet: https://www.nuget.org/packages/PropertyTools.Wpf/ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.