noice 0.7.1

Fork of noise-rs, a procedural noise generation library.
Documentation
1
2
3
4
5
6
7
8
9
10
use noice::{utils::*, Add, Cylinders, Perlin};

fn main() {
    let cyl = Cylinders::new();
    let perlin = Perlin::new();

    let add = Add::new(&cyl, &perlin);

    PlaneMapBuilder::new(&add).build().write_to_file("add.png");
}