noise 0.9.0

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

use noise::{utils::*, Cache, Checkerboard};

mod utils;

fn main() {
    let cboard = Checkerboard::default();
    let cache = Cache::new(cboard);

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