# bool2

> Returns a bool2 vector constructed from two bool values.

## Definition

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

## bool2(bool, bool)

Returns a bool2 vector constructed from two bool values.

```csharp
public static bool2 bool2(bool x, bool y)
```

### 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.

### Returns

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

## bool2(bool2)

Returns a bool2 vector constructed from a bool2 vector.

```csharp
public static bool2 bool2(bool2 xy)
```

### Parameters

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

### Returns

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

## bool2(bool)

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

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

### Parameters

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

### Returns

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