noice 0.7.1

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

fn main() {
    let cyl = Cylinders::new();
    let perlin = Perlin::new();
    let max = Max::new(&cyl, &perlin);

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