# bool2

> Constructs a bool2 vector from two bool values.

## Definition

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

## bool2(bool, bool)

Constructs a bool2 vector from two bool values.

```csharp
public 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.

## bool2(bool2)

Constructs a bool2 vector from a bool2 vector.

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

### Parameters

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

## bool2(bool)

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

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

### Parameters

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