[]
        
(Showing Draft Content)

C1.Util.DX.Vector4.DivideRef

DivideRef Method

DivideRef(out Vector4, ref Vector4, float)

Divides the specified vector by a specified scalar value.

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

The vector that results from the division.

Vector4 left

The vector.

float divisor

The scalar value.

DivideRef(out Vector4, ref Vector4, ref Vector4)

Divides the first vector by the second.

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

The vector resulting from the division.

Vector4 left

The first vector.

Vector4 right

The second vector.