Operator explicit operator
explicit operator int2(bool)
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 |
---|---|---|
bool | v | bool to convert to int2 |
Returns
Type | Description |
---|---|
int2 | Converted value. |
explicit operator int2(bool2)
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 operator int2(uint)
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 |
---|---|---|
uint | v | uint to convert to int2 |
Returns
Type | Description |
---|---|
int2 | Converted value. |
explicit operator int2(uint2)
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 operator int2(float)
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 |
---|---|---|
float | v | float to convert to int2 |
Returns
Type | Description |
---|---|
int2 | Converted value. |
explicit operator int2(float2)
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 operator int2(double)
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 operator int2(double2)
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. |