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

Divide() public static method

public static Divide ( this Other, float Divisor ) : RectangleF
Other this
Divisor float
return System.Drawing.RectangleF
        public static RectangleF Divide(this RectangleF Other, float Divisor)
        {
            return new RectangleF(Other.X / Divisor, Other.Y / Divisor, Other.Width / Divisor, Other.Height / Divisor);
        }