Esempio n. 1
0
 public _3Points(MathDescription.Points _point_1, MathDescription.Points _point_2, MathDescription.Points _point_3)
 {
     point_1 = _point_1;
     point_2 = _point_2;
     point_3 = _point_3;
 }
Esempio n. 2
0
 public _4Points(MathDescription.Points _point_1, MathDescription.Points _point_2, MathDescription.Points _point_3, MathDescription.Points _point_4)
 {
     point_1 = _point_1;
     point_2 = _point_2;
     point_3 = _point_3;
     point_4 = _point_4;
 }
Esempio n. 3
0
 private void DrawingPoint(MathDescription.Points[,] points, int d)
 {
     for (int i = 0; i < N; i++)
         for (int j = 0; j < n; j++)
         {
             points[i, j].x = points[i, j].x;
             points[i, j].y = points[i, j].y;
         }
 }