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