Click or drag to resize

Vector3VectorTriple(Vector3, Vector3) Method

Vector triple product of three Vector3s

Namespace: Microsoft.DirectX
Assembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.00.00
Syntax
C#
public Vector3 VectorTriple(
	Vector3 b,
	Vector3 c
)

Parameters

b  Vector3
Second Vector3
c  Vector3
Third Vector3

Return Value

Vector3
Vector triple product
Remarks
Equivalent to this.Cross(b.Cross(c))
See Also