Beispiel #1
0
        public CompatibleDiviser(Polygon2D a, Polygon2D b)
        {
            this.firstPolygon  = a;
            this.secondPolygon = b;

            this.firstPolygonCollection  = new Polygon2DCollection();
            this.secondPolygonCollection = new Polygon2DCollection();

            targetDiviser = new TargetDiviser(b);
        }
        public CompatibleDiviser(Polygon2D a, Polygon2D b)
        {
            this.firstPolygon = a;
            this.secondPolygon = b;

            this.firstPolygonCollection = new Polygon2DCollection();
            this.secondPolygonCollection = new Polygon2DCollection();

            targetDiviser = new TargetDiviser(b);
        }