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