[]
        
(Showing Draft Content)

C1.Util.DX.Vector3.op_Division

operator / Operator

operator /(Vector3, float)

Divides the specified vector by a specified scalar value.

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

The vector.

float divisor

The scalar value.

Returns
Type Description
Vector3

The vector that results from the division.

operator /(Vector3, Vector3)

Divides the first vector by the second.

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

The first vector.

Vector3 right

The second vector.

Returns
Type Description
Vector3

The vector resulting from the division.