# explicit operator int3

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

## Definition

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

## explicit operator int3(int)

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

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

### Parameters

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

### Returns

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

## explicit operator int3(int)

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

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

### Parameters

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

### Returns

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

## explicit operator int3(int)

Explicitly converts a single uint value to a int3 vector by converting it to int and assigning it to every component.

```csharp
public static explicit operator int3(uint v)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): uint to convert to int3

### Returns

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

## explicit operator int3(int)

Explicitly converts a uint3 vector to a int3 vector by componentwise conversion.

```csharp
public static explicit operator int3(uint3 v)
```

### Parameters

**** (\[uint3]\(/engine/6000.7/script-reference/unity/mathematics/uint3)): uint3 to convert to int3

### Returns

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

## explicit operator int3(int)

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

```csharp
public static explicit operator int3(float v)
```

### Parameters

**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): float to convert to int3

### Returns

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

## explicit operator int3(int)

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

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

### Parameters

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

### Returns

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

## explicit operator int3(int)

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

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

### Parameters

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

### Returns

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

## explicit operator int3(int)

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

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

### Parameters

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

### Returns

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