Click or drag to resize
Vector3Cross Method (Vector3, Vector3, Vector3)

[This is preliminary documentation and is subject to change.]

Calculates the cross product of two vectors.

Namespace: VRageMath
Assembly: VRage.Math (in VRage.Math.dll) Version: 1.0.0.0
Syntax
C#
public static void Cross(
	ref Vector3 vector1,
	ref Vector3 vector2,
	out Vector3 result
)

Parameters

vector1
Type: VRageMathVector3
Source vector.
vector2
Type: VRageMathVector3
Source vector.
result
Type: VRageMathVector3
[OutAttribute] The cross product of the vectors.
See Also