Click or drag to resize
DigitalRuneVector3FToCrossProductMatrix Method
Returns the cross product matrix (skew matrix) of this vector.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public Matrix33F ToCrossProductMatrix()

Return Value

Type: Matrix33F
The cross product matrix of this vector.
Remarks
Vector3F.Cross(v, w) is the same as v.ToCrossProductMatrix() * w.
See Also