crossProduct

crossProduct
(
T
U
)
(
in T a
,
in U b
)
if (
isInstanceOf!(Vector, T) &&
T.dimension == 3
&&
isInstanceOf!(Vector, U)
&&
U.dimension == 3
)

Return Value

Type: auto

Vector/Cross-Product of two 3-Dimensional Vectors.

Meta