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

ShearGreen() public method

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

Same methods

QColorMatrix::ShearGreen ( float red, float blue, MatrixOrder order ) : void