Length2.Division
Division(Length2, float)
Division operator, divides lhs by rhs.
Declaration
public static Length2 operator /(Length2 lhs, float rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| Length2 | lhs | Left hand side. |
| float | rhs | Right hand side. |
Returns
| Type | Description |
|---|---|
| Length2 | The quotient as a Length2. |
Division(float, Length2)
Division operator, divides lhs by rhs.
Declaration
public static Length2 operator /(float lhs, Length2 rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| float | lhs | Left hand side. |
| Length2 | rhs | Right hand side. |
Returns
| Type | Description |
|---|---|
| Length2 | The quotient as a Length2. |
Division(Length2, Vector2)
Division operator, divides lhs by rhs component-wise.
Declaration
public static Length2 operator /(Length2 lhs, Vector2 rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| Length2 | lhs | Left hand side. |
| Vector2 | rhs | Right hand side. |
Returns
| Type | Description |
|---|---|
| Length2 | The quotient as a Length2. |