CrossUI.Drawing.MatrixExtensions.Scale C# (CSharp) Method

Scale() public static method

public static Scale ( this m, double sx, double sy ) : Matrix
m this
sx double
sy double
return Matrix
        public static Matrix Scale(this Matrix m, double sx, double sy)
        {
            return m*Matrix.Scaling(sx, sy);
        }

Same methods

MatrixExtensions::Scale ( this m, double sx, double sy, double cx, double cy ) : Matrix