# bool4

> Returns a bool4 vector constructed from four bool values.

## Definition

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

## bool4(bool, bool, bool, bool)

Returns a bool4 vector constructed from four bool values.

```csharp
public static bool4 bool4(bool x, bool y, bool z, bool w)
```

### 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.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's w component will be set to this value.

### Returns

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

## bool4(bool, bool, bool2)

Returns a bool4 vector constructed from two bool values and a bool2 vector.

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

### 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]\(/engine/6000.5/script-reference/unity/mathematics/bool2)): The constructed vector's zw components will be set to this value.

### Returns

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

## bool4(bool, bool2, bool)

Returns a bool4 vector constructed from a bool value, a bool2 vector and a bool value.

```csharp
public static bool4 bool4(bool x, bool2 yz, bool w)
```

### 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.5/script-reference/unity/mathematics/bool2)): The constructed vector's yz components will be set to this value.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's w component will be set to this value.

### Returns

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

## bool4(bool, bool3)

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

```csharp
public static bool4 bool4(bool x, bool3 yzw)
```

### Parameters

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

### Returns

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

## bool4(bool2, bool, bool)

Returns a bool4 vector constructed from a bool2 vector and two bool values.

```csharp
public static bool4 bool4(bool2 xy, bool z, bool w)
```

### Parameters

**** (\[bool2]\(/engine/6000.5/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.**** (\[bool]\(https\://learn.microsoft.com/dotnet/api/system.boolean)): The constructed vector's w component will be set to this value.

### Returns

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

## bool4(bool2, bool2)

Returns a bool4 vector constructed from two bool2 vectors.

```csharp
public static bool4 bool4(bool2 xy, bool2 zw)
```

### Parameters

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

### Returns

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

## bool4(bool3, bool)

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

```csharp
public static bool4 bool4(bool3 xyz, bool w)
```

### Parameters

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

### Returns

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

## bool4(bool4)

Returns a bool4 vector constructed from a bool4 vector.

```csharp
public static bool4 bool4(bool4 xyzw)
```

### Parameters

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

### Returns

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

## bool4(bool)

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

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

### Parameters

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

### Returns

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