Beispiel #1
0
        public BowyerWatsonAlgorithm()
        {
            Edges     = new List <DelaunayEdge>();
            Triangles = new List <DelaunayTriangle>();

            AlgorithmId = 20;
            History     = new AlgorithmHistory();
        }
Beispiel #2
0
 public ConvexPolyIntersection()
 {
     AlgorithmId = 50;
     History     = new AlgorithmHistory();
 }
Beispiel #3
0
 public GrahamScanAlgorithm()
 {
     AlgorithmId = 10;
     History     = new AlgorithmHistory();
 }
Beispiel #4
0
 public BoundingBoxAlgorithm()
 {
     History = new AlgorithmHistory();
 }