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,7 +10,7 @@ namespace TriangleNet.Examples
/// <summary>
/// Using a user test function to define a maximum edge length constraint.
/// </summary>
public static class Example7
public static class Example8
{
const double MAX_EDGE_LENGTH = 0.2;
@@ -41,7 +41,7 @@ namespace TriangleNet.Examples
}
}
if (print) SvgImage.Save(mesh, "example-7.svg", 500);
if (print) SvgImage.Save(mesh, "example-8.svg", 500);
return true;
}