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