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

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

Divides the components of a vector by the components of another vector.

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

Parameters

value1
Type: VRageMathVector3
Source vector.
value2
Type: VRageMathVector3
The divisor.
result
Type: VRageMathVector3
[OutAttribute] The result of the division.
See Also