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

ShearBlue() public method

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

Same methods

QColorMatrix::ShearBlue ( float red, float green, MatrixOrder order ) : void