explicit operator double4x4
Explicitly converts a single bool value to a double4x4 matrix by converting it to double and assigning it to every component.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Operator
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
explicit operator double4x4(double4x)
Explicitly converts a single bool value to a double4x4 matrix by converting it to double and assigning it to every component.
public static explicit operator double4x4(bool v)
Parameters
bool to convert to double4x4
Returns
Type | Description |
|---|---|
| double4x4 | Converted value. |
explicit operator double4x4(double4x)
Explicitly converts a bool4x4 matrix to a double4x4 matrix by componentwise conversion.
public static explicit operator double4x4(bool4x4 v)
Parameters
bool4x4 to convert to double4x4
Returns
Type | Description |
|---|---|
| double4x4 | Converted value. |