Operator Explicit
Explicit(Boolean to int2)
Explicitly converts a single bool value to a int2 vector by converting it to int and assigning it to every component.
Declaration
public static explicit operator int2(bool v)
Parameters
| Type | Name | Description |
|---|---|---|
| Boolean | v | bool to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(bool2 to int2)
Explicitly converts a bool2 vector to a int2 vector by componentwise conversion.
Declaration
public static explicit operator int2(bool2 v)
Parameters
| Type | Name | Description |
|---|---|---|
| bool2 | v | bool2 to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(UInt32 to int2)
Explicitly converts a single uint value to a int2 vector by converting it to int and assigning it to every component.
Declaration
public static explicit operator int2(uint v)
Parameters
| Type | Name | Description |
|---|---|---|
| UInt32 | v | uint to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(uint2 to int2)
Explicitly converts a uint2 vector to a int2 vector by componentwise conversion.
Declaration
public static explicit operator int2(uint2 v)
Parameters
| Type | Name | Description |
|---|---|---|
| uint2 | v | uint2 to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(Single to int2)
Explicitly converts a single float value to a int2 vector by converting it to int and assigning it to every component.
Declaration
public static explicit operator int2(float v)
Parameters
| Type | Name | Description |
|---|---|---|
| Single | v | float to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(float2 to int2)
Explicitly converts a float2 vector to a int2 vector by componentwise conversion.
Declaration
public static explicit operator int2(float2 v)
Parameters
| Type | Name | Description |
|---|---|---|
| float2 | v | float2 to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(Double to int2)
Explicitly converts a single double value to a int2 vector by converting it to int and assigning it to every component.
Declaration
public static explicit operator int2(double v)
Parameters
| Type | Name | Description |
|---|---|---|
| Double | v | double to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |
Explicit(double2 to int2)
Explicitly converts a double2 vector to a int2 vector by componentwise conversion.
Declaration
public static explicit operator int2(double2 v)
Parameters
| Type | Name | Description |
|---|---|---|
| double2 | v | double2 to convert to int2 |
Returns
| Type | Description |
|---|---|
| int2 | Converted value. |