Esempio n. 1
0
 public Window(FPoint topLeft, FPoint bottomRight)
 {
     Domain = new PointRange(topLeft.X, bottomRight.X);
     Range  = new PointRange(bottomRight.Y, topLeft.Y);
 }
Esempio n. 2
0
 public Window(double x0, double x1, double y0, double y1)
 {
     Domain = new PointRange(x0, x1);
     Range  = new PointRange(y0, y1);
 }