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