vox-format 0.1.0

Parser for MagicaVoxel's .VOX file format.
Documentation

crates.io docs.rs MIT license Maintenance

vox-format

vox-format is a parser and encoder for MagicaVoxel's VOX files.

Usage

In your Cargo.toml add:

[dependencies]
vox-format = "0.1"

Example

let vox_data = vox_format::from_file("test_files/glider.vox")?;
println!("{:#?}", vox_data);