clipper2-sys 1.0.0

Polygon Clipping and Offsetting (Clipper2 wrapper)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using BenchmarkDotNet.Running;

#if USINGZ
namespace Clipper2ZLib.Benchmark
#else
namespace Clipper2Lib.Benchmark
#endif
{
  public static class Program
    {        
        public static void Main()
        {
            BenchmarkRunner.Run<Benchmarks>();
        }
    }
}