[]
Divides the specified vector by a specified scalar value.
public static Vector3 Divide(Vector3 left, float divisor)
| Type | Name | Description |
|---|---|---|
| Vector3 | left | 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 Divide(Vector3 left, Vector3 right)
| Type | Name | Description |
|---|---|---|
| Vector3 | left | The first vector. |
| Vector3 | right | The second vector. |
| Type | Description |
|---|---|
| Vector3 | The vector resulting from the division. |