Add examples project.

This commit is contained in:
wo80
2022-02-15 17:45:36 +01:00
parent 940ae18061
commit ea6d39e1da
16 changed files with 730 additions and 27 deletions
+21
View File
@@ -0,0 +1,21 @@
namespace TriangleNet
{
using TriangleNet.Examples;
class Program
{
static void Main(string[] args)
{
Example1.Run();
Example2.Run();
Example3.Run();
Example4.Run();
Example5.Run();
Example8.Run();
Example6.Run();
Example7.Run();
Example9.Run();
}
}
}