3 unstable releases
0.2.1 | Oct 31, 2023 |
---|---|
0.2.0 | Oct 31, 2023 |
0.1.0 | Oct 31, 2023 |
#1168 in Math
76 downloads per month
6.5MB
328 lines
Simplex 2D / 3D in Rust
Provides basic 2D and 3D simplex noise functions.
This Rust version is ported from the public domain Java implementation described here:
Simplex noise demystified Stefan Gustavson, Linköping University, Sweden (stegu@itn.liu.se), 2005-03-22
Usage
use simplex_23d::Simplex;
let seed: u64 = 42;
let noise = Simplex::new(seed);
// 2d noise
let value: f32 = noise.sample2d(1.0, 1.0);
// 3d noise
let value: f32 = noise.sample3d(1.0, 1.0, 1.0);
The Simplex
object generates a permutation table using the rand
crate from the given seed value. For frequency, you'd just multiply it with the input coordinate:
let freq: f32 = 0.001234;
let x: f32 = 1.0 * freq;
let y: f32 = 1.0 * freq;
let value: f32 = noise.sample2d(x, y);
Visualizations
Changelog
0.2.1
fix perm_mod12 optimization0.2.0
updated readme0.1.0
initial release