Click or drag to resize
DigitalRuneVector3DToCrossProductMatrix 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 Matrix33D ToCrossProductMatrix()

Return Value

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