# cellular2x2x2(float3)

> 3D Cellular noise ("Worley noise") with a 2x2x2 search window.

## Definition

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

```csharp
public static float2 cellular2x2x2(float3 P)
```

### Parameters

**** (\[float3]\(/engine/6000.5/script-reference/unity/mathematics/float3)): A point in 3D space.

### Returns

| Type                                                                  | Description                                                      |
| --------------------------------------------------------------------- | ---------------------------------------------------------------- |
| [float2](/engine/6000.5/script-reference/unity/mathematics/float2.md) | Feature points. F1 is in the x component, F2 in the y component. |

### Remarks

Faster than using 3x3x3, at the expense of some pattern artifacts. F2 is often wrong and has sharp discontinuities. If you need a smooth F2, use the slower 3x3x3 version.
