public GradientProjectionMethod(Polygon[] pol, SemiinfiniteStrip s, double h, double w)
 {
     this.polygons = pol;
     this.st = s;
     this.height = h;
     this.width = w;
 }
Exemple #2
0
        public Form1()
        {
            InitializeComponent();

            iterator = 0;

            double[] A = ReadStrip();
            st = new SemiinfiniteStrip(A[0], A[1], (int)A[2]);

        }