voxelis 25.4.0

Sparse Voxel Octree DAG engine for building worlds, shaping matter, and mastering 3D space — powered by pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// #![warn(missing_docs)]
// #![warn(rustdoc::missing_crate_level_docs)]
// #![warn(clippy::all)]
// #![warn(clippy::pedantic)]
// #![allow(clippy::module_name_repetitions)]
#![warn(clippy::cargo)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::if_not_else)]

pub mod core;
pub mod interner;
pub mod io;
pub mod spatial;
pub mod utils;
pub mod world;

pub use core::{Batch, BlockId, Lod, MaxDepth, TraversalDepth, VoxelTrait};
pub use interner::VoxInterner;