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

ShearColor() private method

private ShearColor ( int x, int y1, float d1, int y2, float d2, MatrixOrder order ) : void
x int
y1 int
d1 float
y2 int
d2 float
order MatrixOrder
return void
        private void ShearColor(int x, int y1, float d1, int y2, float d2, MatrixOrder order)
        {
            var qm = new QColorMatrix();
            qm._matrix[y1, x] = d1;
            qm._matrix[y2, x] = d2;
            this.Multiply(qm, order);
        }