[]
        
(Showing Draft Content)

C1.Util.DX.Vector3.DivideRef

DivideRef Method

DivideRef(out Vector3, ref Vector3, float)

Divides the specified vector by a specified scalar value.

Declaration
public static void DivideRef(out Vector3 result, ref Vector3 left, float divisor)
Parameters
Type Name Description
Vector3 result

The vector that results from the division.

Vector3 left

The vector.

float divisor

The scalar value.

DivideRef(out Vector3, ref Vector3, ref Vector3)

Divides the first vector by the second.

Declaration
public static void DivideRef(out Vector3 result, ref Vector3 left, ref Vector3 right)
Parameters
Type Name Description
Vector3 result

The vector resulting from the division.

Vector3 left

The first vector.

Vector3 right

The second vector.