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