# explicit operator double3

> Explicitly converts a single bool value to a double3 vector by converting it to double and assigning it to every component.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.Mathematics](/engine/6000.6/script-reference/unity/mathematics.md)
* **Assembly:** UnityEngine.MathematicsModule

## explicit operator double3(double)

Explicitly converts a single bool value to a double3 vector by converting it to double and assigning it to every component.

```csharp
public static explicit operator double3(bool v)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): bool to convert to double3

### Returns

| Type                                                                    | Description      |
| ----------------------------------------------------------------------- | ---------------- |
| [double3](/engine/6000.6/script-reference/unity/mathematics/double3.md) | Converted value. |

## explicit operator double3(double)

Explicitly converts a bool3 vector to a double3 vector by componentwise conversion.

```csharp
public static explicit operator double3(bool3 v)
```

### Parameters

**** (\[bool3]\(/engine/6000.6/script-reference/unity/mathematics/bool3)): bool3 to convert to double3

### Returns

| Type                                                                    | Description      |
| ----------------------------------------------------------------------- | ---------------- |
| [double3](/engine/6000.6/script-reference/unity/mathematics/double3.md) | Converted value. |
