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

RotateRed() public method

Rotate the matrix around the red color axes. The color of the rotation axis is unchanged, the other two colors are rotated in color space.
public RotateRed ( float phi ) : void
phi float Angle in degrees to rotate (-180.0f... 180.0f).
return void
        public void RotateRed(float phi)
        {
            this.RotateRed(phi, MatrixOrder.MatrixOrderPrepend);
        }

Same methods

QColorMatrix::RotateRed ( float phi, MatrixOrder order ) : void