Method srnoise
srnoise(float2, Single)
2-D non-tiling simplex noise with rotating gradients, without the analytical derivative.
Declaration
public static float srnoise(float2 pos, float rot)
Parameters
Type | Name | Description |
---|---|---|
float2 | pos | Input (x,y) coordinate. |
Single | rot | Angle to rotate the gradients. |
Returns
Type | Description |
---|---|
Single | Noise value. |
srnoise(float2)
2-D non-tiling simplex noise with fixed gradients, without the analytical derivative.
Declaration
public static float srnoise(float2 pos)
Parameters
Type | Name | Description |
---|---|---|
float2 | pos | Input (x,y) coordinate. |
Returns
Type | Description |
---|---|
Single | Noise value. |