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