예제 #1
0
 public Rectangle2D(double x, double y, double width, double height)
 {
     _minPt = new Point2D(x, y);
     _size  = new Vector2D(width, height);
 }
예제 #2
0
 public Rectangle2D(Point2D minPt, Vector2D size)
 {
     _minPt = minPt;
     _size  = size;
 }