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