# NextFloat3

> Returns a uniformly random float3 value with all components in the interval [0, 1).

## Definition

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

## NextFloat3()

Returns a uniformly random float3 value with all components in the interval \[0, 1).

```csharp
public float3 NextFloat3()
```

### Returns

| Type                                                                  | Description                                           |
| --------------------------------------------------------------------- | ----------------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | A uniformly random float3 value in the range \[0, 1). |

## NextFloat3(float3)

Returns a uniformly random float3 value with all components in the interval \[0, max).

```csharp
public float3 NextFloat3(float3 max)
```

### Parameters

**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): The componentwise maximum value to generate, exclusive.

### Returns

| Type                                                                  | Description                                             |
| --------------------------------------------------------------------- | ------------------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | A uniformly random float3 value in the range \[0, max). |

## NextFloat3(float3, float3)

Returns a uniformly random float3 value with all components in the interval \[min, max).

```csharp
public float3 NextFloat3(float3 min, float3 max)
```

### Parameters

**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): The componentwise minimum value to generate, inclusive.**** (\[float3]\(/engine/6000.7/script-reference/unity/mathematics/float3)): The componentwise maximum value to generate, exclusive.

### Returns

| Type                                                                  | Description                                               |
| --------------------------------------------------------------------- | --------------------------------------------------------- |
| [float3](/engine/6000.7/script-reference/unity/mathematics/float3.md) | A uniformly random float3 value in the range \[min, max). |

### Remarks

Each component is computed as `NextFloat() * (max - min) + min`, so floating-point rounding can in rare cases return a component equal to the corresponding component of `max` rather than strictly less than it. Clamp the result if you require components strictly less than `max`.
