FVector4CrossProduct Method

Return the cross product of two vectors.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static FVector4 CrossProduct(
	FVector4 vector1,
	FVector4 vector2
)

Parameters

vector1  FVector4
Reference to the first vector.
vector2  FVector4
Reference to the second vector.

Return Value

FVector4
Reference to the result of the cross product operation.

Remarks

This version performs a 3D cross-product, ignoring the W element with the assumption that the usage case is with 3D coordinates.

See Also