Skip to content

Fast and lightweight noise algorithms.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

bluurryy/noise-functions

Repository files navigation

Noise Functions

Crates.io Documentation Rust License

Fast and lightweight noise algorithm implementations.

Check out the live demo!

The implementation of these noise functions are from FastNoiseLite.

Base noises

Fractal noises

Domain warped noises

Why not noise or libnoise?

With noise, constructing a noise struct like Perlin creates a permutation table at runtime. So to use the noise efficiently, you need to keep that instance of Perlin around.

With noise-functions, Perlin and friends don't carry any state. This makes noise algorithms easier to use efficiently. For example, you can use the noise algorithms without having to carry around state, without sacrificing performance:

fn my_noise(point: Vec2) -> f32 {
    Perlin.fbm(3, 0.5, 2.0).seed(42).frequency(3.0).sample2(point)
}

Pros: noise has more noise functions, more dimensions for noise functions and more noise combinators.

Difference: noise uses f64 instead of f32.

fastnoise-lite provides its noise generation via a big struct that you are to mutate to get the noise you want. If you already know what noise you want this api is inconvenient and inefficient. There is the noise-functions-config crate that provides a similar api if you need it.

Pros: fastnoise-lite provides more cellular noise variations and has domain warping built into the config struct.

About

Fast and lightweight noise algorithms.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Languages