jordan4ibanez_perlin_rust 0.0.1

A simple perlin noise implementation in Rust
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 10.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 427.77 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • jordan4ibanez/perlin_rust
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jordan4ibanez

perlin_rust

A slightly modified version of https://github.com/wantaotao1994/perlin_rust

    let perlin = PerlinNoise::new(100.0); //use seed
    assert_eq!(  perlin.perlin2(0.01,0.01), -0.00000009860109363395148);
    assert_eq!(  perlin.perlin3(0.01, 0.01, 0.01), 0.01999940916000743);

See cargo doc for more implementations.