Click or drag to resize

Vector3ScalarTriple(Vector3, Vector3) Method

Scalar triple product of three Vector3s

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

Parameters

b  Vector3
Second Vector3
c  Vector3
Third Vector3

Return Value

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