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