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