ARCed.Core.QColorMatrix.ShearRed C# (CSharp) Method

ShearRed() public method

Shear the matrix in the red color plane. The color is influenced by the other two planes.
public ShearRed ( float green, float blue ) : void
green float Green color plane
blue float Blue color plane
return void
        public void ShearRed(float green, float blue)
        {
            this.ShearRed(green, blue, MatrixOrder.MatrixOrderPrepend);
        }

Same methods

QColorMatrix::ShearRed ( float green, float blue, MatrixOrder order ) : void