wave_func_collapse 0.1.0

Implementation of wave function collapse algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

#[cfg(feature = "jemalloc")]
#[global_allocator]
static GLOBAL: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;

pub mod prelude {
    pub use crate::*;
    pub use grid::*;
    pub use rule::*;
    pub use tile::*;
}

pub mod grid;
pub mod rule;
pub mod tile;