Matrix.Shear

Shear(float, float)

Applies the specified shear vector to this Matrix by prepending the shear transformation.

public void Shear(float shearX, float shearY)
ParameterTypeDescription
shearXSingleThe horizontal shear factor.
shearYSingleThe vertical shear factor.

See Also


Shear(float, float, MatrixOrder)

Applies the specified shear vector to this Matrix in the specified order.

public void Shear(float shearX, float shearY, MatrixOrder order)
ParameterTypeDescription
shearXSingleThe horizontal shear factor.
shearYSingleThe vertical shear factor.
orderMatrixOrderA MatrixOrder that specifies the order (append or prepend) in which the shear is applied.

See Also