C1.Win.C1DX.4.8 Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / Skew Method
The translation vector
The rotation vector
The rotation angle, in radians.

In This Topic
Skew Method (Matrix4x4)
In This Topic
Creates a skew/shear matrix by means of a translation vector, a rotation vector, and a rotation angle.
Syntax
'Declaration
 
Public Shared Function Skew( _
   ByVal transVec As Vector3, _
   ByVal rotationVec As Vector3, _
   ByVal radians As System.Single _
) As Matrix4x4
 

Parameters

transVec
The translation vector
rotationVec
The rotation vector
radians
The rotation angle, in radians.

Return Value

The created skew/shear matrix.
Remarks
Shearing is performed in the direction of translation vector, where translation vector and rotation vector define the shearing plane. The effect is such that the skewed rotation vector has the specified angle with rotation itself.
See Also