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

Inflate() public static method

public static Inflate ( RectangleF rect, float x, float y ) : RectangleF
rect RectangleF
x float
y float
return RectangleF
        public static RectangleF Inflate(RectangleF rect, float x, float y)
        {
            RectangleF result = rect;
            result.Inflate(x, y);
            return result;
        }

Same methods

RectangleF::Inflate ( float x, float y ) : void