[]
Divides the specified vector by a specified scalar value.
public static void DivideRef(out Vector3 result, ref Vector3 left, float divisor)
Type | Name | Description |
---|---|---|
Vector3 | result | The vector that results from the division. |
Vector3 | left | The vector. |
float | divisor | The scalar value. |
Divides the first vector by the second.
public static void DivideRef(out Vector3 result, ref Vector3 left, ref Vector3 right)
Type | Name | Description |
---|---|---|
Vector3 | result | The vector resulting from the division. |
Vector3 | left | The first vector. |
Vector3 | right | The second vector. |