3 unstable releases

0.2.1 Oct 31, 2023
0.2.0 Oct 31, 2023
0.1.0 Oct 31, 2023

#408 in Math

Download history 2/week @ 2024-02-15 13/week @ 2024-02-22 7/week @ 2024-02-29 17/week @ 2024-03-07 59/week @ 2024-03-14

90 downloads per month

MIT/Apache

6.5MB
328 lines

Simplex 2D / 3D in Rust

License Crates.io

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

simplex noise 2d

simplex noise 3d

Changelog

  • 0.2.1 fix perm_mod12 optimization
  • 0.2.0 updated readme
  • 0.1.0 initial release

Dependencies