urath 0.1.0

High-performance voxel meshing algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod ao;
pub mod chunk;
pub mod error;
pub mod greedy;
pub mod mesh_output;
pub mod mesher;

pub use chunk::{CHUNK_SIZE, Chunk, ChunkNeighbors, Face};
pub use error::MeshError;
pub use greedy::GreedyMesher;
pub use mesh_output::MeshOutput;
pub use mesher::Mesher;