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