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