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, MatrixOrder order ) : void
red float Red color plane
green float Green color plane
order MatrixOrder Matrix order
return void
        public void ShearBlue(float red, float green, MatrixOrder order)
        {
            this.ShearColor(2, 0, red, 1, green, order);
        }

Same methods

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