Crates.io | bracket-noise |
lib.rs | bracket-noise |
version | 0.8.7 |
source | src |
created_at | 2020-02-21 19:25:22.379517 |
updated_at | 2022-10-04 18:54:53.931392 |
description | Rust port of Auburn's amazing FastNoise library. Part of the bracket-lib family. |
homepage | https://github.com/thebracket/bracket-lib |
repository | https://github.com/thebracket/bracket-lib |
max_upload_size | |
id | 211284 |
size | 146,408 |
Auburn's FastNoise library is amazing - it's fast, covers all the commonly used types of noise, and has been ported to many systems. This crate ports much of that functionality (more is being ported in each version) to Rust. It is part of the bracket-lib
family of crates.
To obtain bracket-noise
, include the following in your Cargo.toml
file:
[dependencies]
bracket-noise = "~0.8"
You may run examples with cargo run --example <name>
. The examples use crossterm
for easy terminal output.
simplex_fractal
uses Fractal Simplex Noise to make a heightmap, and outputs it to your terminal.perlin_fractal
uses Fractal Perlin Noise to make a heightmap, and outputs it to your terminal.white_noise
outputs a randomized white noise sample to your terminal.value
outputs "value noise" to your terminal. This is a bit like white noise but smoother.value_fractal
outputs "fractal value noise" to your terminal.cellular
provides a dump of cellular noise. Until the functions to look up the base noise layer from another noise generator are implemented, this is of limited utility.simplex_billow_quintic
and simplex_rigid_hermite
demonstrate some noise tweaking options.