# explicit operator float3

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

## Definition

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

## explicit operator float3(float)

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

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

### Parameters

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

### Returns

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

## explicit operator float3(float)

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

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

### Parameters

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

### Returns

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

## explicit operator float3(float)

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

```csharp
public static explicit operator float3(double v)
```

### Parameters

**** (\[double]\(https\://learn.microsoft.com/dotnet/api/system.double)): double to convert to float3

### Returns

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

## explicit operator float3(float)

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

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

### Parameters

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

### Returns

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