Operator Explicit
Explicit(Boolean to uint2x2)
Explicitly converts a single bool value to a uint2x2 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint2x2(bool v)
Parameters
Type | Name | Description |
---|---|---|
Boolean | v | bool to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(bool2x2 to uint2x2)
Explicitly converts a bool2x2 matrix to a uint2x2 matrix by componentwise conversion.
Declaration
public static explicit operator uint2x2(bool2x2 v)
Parameters
Type | Name | Description |
---|---|---|
bool2x2 | v | bool2x2 to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(Int32 to uint2x2)
Explicitly converts a single int value to a uint2x2 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint2x2(int v)
Parameters
Type | Name | Description |
---|---|---|
Int32 | v | int to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(int2x2 to uint2x2)
Explicitly converts a int2x2 matrix to a uint2x2 matrix by componentwise conversion.
Declaration
public static explicit operator uint2x2(int2x2 v)
Parameters
Type | Name | Description |
---|---|---|
int2x2 | v | int2x2 to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(Single to uint2x2)
Explicitly converts a single float value to a uint2x2 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint2x2(float v)
Parameters
Type | Name | Description |
---|---|---|
Single | v | float to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(float2x2 to uint2x2)
Explicitly converts a float2x2 matrix to a uint2x2 matrix by componentwise conversion.
Declaration
public static explicit operator uint2x2(float2x2 v)
Parameters
Type | Name | Description |
---|---|---|
float2x2 | v | float2x2 to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(Double to uint2x2)
Explicitly converts a single double value to a uint2x2 matrix by converting it to uint and assigning it to every component.
Declaration
public static explicit operator uint2x2(double v)
Parameters
Type | Name | Description |
---|---|---|
Double | v | double to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |
Explicit(double2x2 to uint2x2)
Explicitly converts a double2x2 matrix to a uint2x2 matrix by componentwise conversion.
Declaration
public static explicit operator uint2x2(double2x2 v)
Parameters
Type | Name | Description |
---|---|---|
double2x2 | v | double2x2 to convert to uint2x2 |
Returns
Type | Description |
---|---|
uint2x2 | Converted value. |