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
use bitflags::bitflags;

bitflags! {
  #[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
  pub struct Flags: u16 {
    const NONE = 0b00000000;
    const COMPRESSED = 0b00000001;
    const DEFAULT = Self::COMPRESSED.bits();
  }
}