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