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