Disco.Services.ImagingExtensions.Multiply C# (CSharp) Method

Multiply() public static method

public static Multiply ( this Other, float Multiplier ) : RectangleF
Other this
Multiplier float
return System.Drawing.RectangleF
        public static RectangleF Multiply(this RectangleF Other, float Multiplier)
        {
            return new RectangleF(Other.X * Multiplier, Other.Y * Multiplier, Other.Width * Multiplier, Other.Height * Multiplier);
        }