noise 0.9.0

Procedural noise generation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate noise;

use noise::{utils::*, Cylinders, Max, Perlin};

mod utils;

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

    utils::write_example_to_file(&PlaneMapBuilder::new(max).build(), "max.png");
}