# uint4

> Returns a uint4 vector constructed from four uint values.

## Definition

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

## uint4(uint, uint, uint, uint)

Returns a uint4 vector constructed from four uint values.

```csharp
public static uint4 uint4(uint x, uint y, uint z, uint w)
```

### Parameters

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

### Returns

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

## uint4(uint, uint, uint2)

Returns a uint4 vector constructed from two uint values and a uint2 vector.

```csharp
public static uint4 uint4(uint x, uint y, uint2 zw)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The constructed vector's x component will be set to this value.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The constructed vector's y component will be set to this value.**** (\[uint2]\(/engine/6000.7/script-reference/unity/mathematics/uint2)): The constructed vector's zw components will be set to this value.

### Returns

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

## uint4(uint, uint2, uint)

Returns a uint4 vector constructed from a uint value, a uint2 vector and a uint value.

```csharp
public static uint4 uint4(uint x, uint2 yz, uint w)
```

### Parameters

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

### Returns

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

## uint4(uint, uint3)

Returns a uint4 vector constructed from a uint value and a uint3 vector.

```csharp
public static uint4 uint4(uint x, uint3 yzw)
```

### Parameters

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

### Returns

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

## uint4(uint2, uint, uint)

Returns a uint4 vector constructed from a uint2 vector and two uint values.

```csharp
public static uint4 uint4(uint2 xy, uint z, uint w)
```

### Parameters

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

### Returns

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

## uint4(uint2, uint2)

Returns a uint4 vector constructed from two uint2 vectors.

```csharp
public static uint4 uint4(uint2 xy, uint2 zw)
```

### Parameters

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

### Returns

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

## uint4(uint3, uint)

Returns a uint4 vector constructed from a uint3 vector and a uint value.

```csharp
public static uint4 uint4(uint3 xyz, uint w)
```

### Parameters

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

### Returns

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

## uint4(uint4)

Returns a uint4 vector constructed from a uint4 vector.

```csharp
public static uint4 uint4(uint4 xyzw)
```

### Parameters

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

### Returns

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

## uint4(uint)

Returns a uint4 vector constructed from a single uint value by assigning it to every component.

```csharp
public static uint4 uint4(uint v)
```

### Parameters

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

### Returns

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

## uint4(bool)

Returns a uint4 vector constructed from a single bool value by converting it to uint and assigning it to every component.

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

### Parameters

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

### Returns

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

## uint4(bool4)

Return a uint4 vector constructed from a bool4 vector by componentwise conversion.

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

### Parameters

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

### Returns

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

## uint4(int)

Returns a uint4 vector constructed from a single int value by converting it to uint and assigning it to every component.

```csharp
public static uint4 uint4(int v)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): int to convert to uint4

### Returns

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

## uint4(int4)

Return a uint4 vector constructed from a int4 vector by componentwise conversion.

```csharp
public static uint4 uint4(int4 v)
```

### Parameters

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

### Returns

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

## uint4(float)

Returns a uint4 vector constructed from a single float value by converting it to uint and assigning it to every component.

```csharp
public static uint4 uint4(float v)
```

### Parameters

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

### Returns

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

## uint4(float4)

Return a uint4 vector constructed from a float4 vector by componentwise conversion.

```csharp
public static uint4 uint4(float4 v)
```

### Parameters

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

### Returns

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

## uint4(double)

Returns a uint4 vector constructed from a single double value by converting it to uint and assigning it to every component.

```csharp
public static uint4 uint4(double v)
```

### Parameters

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

### Returns

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

## uint4(double4)

Return a uint4 vector constructed from a double4 vector by componentwise conversion.

```csharp
public static uint4 uint4(double4 v)
```

### Parameters

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

### Returns

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