# psrdnoise

> 2-D tiling simplex noise with rotating gradients and analytical derivative.

## Definition

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

## psrdnoise(float2, float2, float)

2-D tiling simplex noise with rotating gradients and analytical derivative.

```csharp
public static float3 psrdnoise(float2 pos, float2 per, float rot)
```

### Parameters

**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): Input (x,y) coordinate.**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): The x and y period, where per.x is a positive integer and per.y is a positive even integer.**** (\[float]\(https\://learn.microsoft.com/dotnet/api/system.single)): Angle to rotate the gradients.

### Returns

| Type                                                                  | Description                                                                                                                                     |
| --------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| [float3](/engine/6000.6/script-reference/unity/mathematics/float3.md) | The first component of the 3-element return vector is the noise value, and the second and third components are the x and y partial derivatives. |

## psrdnoise(float2, float2)

2-D tiling simplex noise with fixed gradients and analytical derivative.

```csharp
public static float3 psrdnoise(float2 pos, float2 per)
```

### Parameters

**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): Input (x,y) coordinate.**** (\[float2]\(/engine/6000.6/script-reference/unity/mathematics/float2)): The x and y period, where per.x is a positive integer and per.y is a positive even integer.

### Returns

| Type                                                                  | Description                                                                                                                                     |
| --------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| [float3](/engine/6000.6/script-reference/unity/mathematics/float3.md) | The first component of the 3-element return vector is the noise value, and the second and third components are the x and y partial derivatives. |
