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