Category5.Rectangle2D.Rectangle2D C# (CSharp) Method

Rectangle2D() public method

public Rectangle2D ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
return System
        public Rectangle2D(float x, float y, float width, float height)
        {
            this.X = x;
            this.Y = y;
            this.Width = width;
            this.Height = height;
        }