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

Scale() public method

Update this matrix with the product of itself and a scaling vector.
public Scale ( float scaleRed, float scaleGreen, float scaleBlue, float scaleOpacity ) : void
scaleRed float Red scaling value
scaleGreen float Green scaling value
scaleBlue float Blue scaling value
scaleOpacity float Alpha scaling value
return void
        public void Scale(float scaleRed, float scaleGreen, float scaleBlue,
            float scaleOpacity)
        {
            this.Scale(scaleRed, scaleGreen, scaleBlue,
                scaleOpacity, MatrixOrder.MatrixOrderPrepend);
        }

Same methods

QColorMatrix::Scale ( float scaleRed, float scaleGreen, float scaleBlue, float scaleOpacity, MatrixOrder order ) : void