MegaMan.Common.Geometry.RectangleF.RectangleF C# (CSharp) Method

RectangleF() public method

public RectangleF ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
return System
        public RectangleF(float x, float y, float width, float height)
        {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        }