Example #1
0
 public RectangleInt(int x, int y, Size size)
 {
     this.x = x;
     this.y = y;
     this.width = size.Width;
     this.height = size.Height;
 }
Example #2
0
 public Rectangle(float x, float y, Size size)
 {
     this.x = x;
     this.y = y;
     this.width = size.Width;
     this.height = size.Height;
 }