# bool3

> Returns a bool3 vector constructed from three bool values.

## Definition

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

## bool3(bool, bool, bool)

Returns a bool3 vector constructed from three bool values.

```csharp
public static bool3 bool3(bool x, bool y, bool z)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's x component will be set to this value.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's y component will be set to this value.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's z component will be set to this value.

### Returns

| Type                                                                | Description                       |
| ------------------------------------------------------------------- | --------------------------------- |
| [bool3](/engine/6000.6/script-reference/unity/mathematics/bool3.md) | bool3 constructed from arguments. |

## bool3(bool, bool2)

Returns a bool3 vector constructed from a bool value and a bool2 vector.

```csharp
public static bool3 bool3(bool x, bool2 yz)
```

### Parameters

**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's x component will be set to this value.**** (\[bool2]\(/engine/6000.6/script-reference/unity/mathematics/bool2)): The constructed vector's yz components will be set to this value.

### Returns

| Type                                                                | Description                       |
| ------------------------------------------------------------------- | --------------------------------- |
| [bool3](/engine/6000.6/script-reference/unity/mathematics/bool3.md) | bool3 constructed from arguments. |

## bool3(bool2, bool)

Returns a bool3 vector constructed from a bool2 vector and a bool value.

```csharp
public static bool3 bool3(bool2 xy, bool z)
```

### Parameters

**** (\[bool2]\(/engine/6000.6/script-reference/unity/mathematics/bool2)): The constructed vector's xy components will be set to this value.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's z component will be set to this value.

### Returns

| Type                                                                | Description                       |
| ------------------------------------------------------------------- | --------------------------------- |
| [bool3](/engine/6000.6/script-reference/unity/mathematics/bool3.md) | bool3 constructed from arguments. |

## bool3(bool3)

Returns a bool3 vector constructed from a bool3 vector.

```csharp
public static bool3 bool3(bool3 xyz)
```

### Parameters

**** (\[bool3]\(/engine/6000.6/script-reference/unity/mathematics/bool3)): The constructed vector's xyz components will be set to this value.

### Returns

| Type                                                                | Description                       |
| ------------------------------------------------------------------- | --------------------------------- |
| [bool3](/engine/6000.6/script-reference/unity/mathematics/bool3.md) | bool3 constructed from arguments. |

## bool3(bool)

Returns a bool3 vector constructed from a single bool value by assigning it to every component.

```csharp
public static bool3 bool3(bool v)
```

### Parameters

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

### Returns

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