noisy_bevy 0.14.0

Procedural noise primitives for Bevy
Documentation
# Examples

## Worley

Also known as Voronoi or cell noise.

[worley.rs](/examples/worley.rs) on the CPU

```sh
cargo run --example worley
```

[worley_shader.rs](/examples/worley_shader.rs) for the GPU

```sh
cargo run --example worley_shader
```

![worley.png](../images/worley.png)

## Domain warping

A technique that distorts the position before feeding it to the noise, inspired by [Inigo Quilez](https://iquilezles.org/articles/warp).

[domain_warping_shader.rs](/examples/domain_warping_shader.rs)

![domain_warping](../images/domain_warping.webp)

```sh
cargo run --example domain_warping_shader
```