Click or drag to resize

Vector3ScalarTriple Method (Vector3, Vector3)

Scalar triple product of three Vector3s

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

Parameters

b
Type: Microsoft.DirectXVector3
Second Vector3
c
Type: Microsoft.DirectXVector3
Third Vector3

Return Value

Type: Double
Scalar triple product as a Double
Remarks
Equivalent to
this.DotD(b.Cross(c))
See Also