Add interpolation test.

This commit is contained in:
wo80
2022-03-05 22:17:27 +01:00
parent 48380f5952
commit b6cd758d1c
3 changed files with 71 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@
/// </summary>
public static class Example6
{
public static bool Run(bool print = true)
public static bool Run(bool print = false)
{
// Generate the input geometry.
var polygon = new Polygon(8, true);
+1 -1
View File
@@ -76,7 +76,7 @@ namespace TriangleNet.Examples
Console.WriteLine(" Number of invalid triangulations: {0}", invalid);
}
return true;
return invalid == 0;
}
private static void ProcessMesh(IMesh mesh, MeshResult result)