billow 0.2.0

Simple Wave Function Collapse implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Implementation of the wave function collapse algorithm based on Oskar Stålberg's.
//!
//! The wave function collapse algorithm is a recursive algorithm that picks a random tile
//! for a slot on the output image and removes impossible neighbors until only a single possibility remains

pub use conector::*;
pub use direction::*;
pub use features::*;
pub use wave::*;

mod conector;
mod direction;
mod features;
mod module;
mod slot;
mod wave;