Exemplo n.º 1
0
 public Rect(float x, float y, float width, float height)
 {
     this.Origin = new Point (x, y);
     this.Size = new Size (width, height);
 }
Exemplo n.º 2
0
 public Rect(Point origin, Size size)
 {
     this.Origin = origin;
     this.Size = size;
 }