Add convex hull example.

This commit is contained in:
wo80
2022-04-25 17:46:19 +02:00
parent 5b2d85e299
commit e162e02102
12 changed files with 107 additions and 27 deletions
+2 -2
View File
@@ -10,11 +10,11 @@ namespace TriangleNet.Examples
/// <summary>
/// Compute the adjacency matrix of the mesh vertices.
/// </summary>
public class Example8
public class Example9
{
public static bool Run()
{
var mesh = (Mesh)Example3.CreateMesh();
var mesh = (Mesh)Example4.CreateMesh();
return FindAdjacencyMatrix(mesh);
}