FVector4CrossProduct Method
Return the cross product of two vectors.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static FVector4 CrossProduct(
FVector4 vector1,
FVector4 vector2
)
Public Shared Function CrossProduct (
vector1 As FVector4,
vector2 As FVector4
) As FVector4
No code example is currently available or this language may not be supported.
- vector1 FVector4
-
Reference to the first vector.
- vector2 FVector4
-
Reference to the second vector.
FVector4
Reference to the result of the cross product operation.
This version performs a 3D cross-product, ignoring the W element with
the assumption that the usage case is with 3D coordinates.