[]
        
(Showing Draft Content)

C1.Util.DX.Vector4.op_Division

operator / Operator

operator /(Vector4, float)

Divides the specified vector by a specified scalar value.

Declaration
public static Vector4 operator /(Vector4 value, float divisor)
Parameters
Type Name Description
Vector4 value

The vector.

float divisor

The scalar value.

Returns
Type Description
Vector4

The vector that results from the division.

operator /(Vector4, Vector4)

Divides the first vector by the second.

Declaration
public static Vector4 operator /(Vector4 left, Vector4 right)
Parameters
Type Name Description
Vector4 left

The first vector.

Vector4 right

The second vector.

Returns
Type Description
Vector4

The vector resulting from the division.