Crates.io | vox-format |
lib.rs | vox-format |
version | 0.1.0 |
source | src |
created_at | 2021-07-23 02:55:23.927379 |
updated_at | 2021-07-23 02:55:23.927379 |
description | Parser for MagicaVoxel's .VOX file format. |
homepage | https://github.com/jgraef/vox-format |
repository | https://github.com/jgraef/vox-format |
max_upload_size | |
id | 426093 |
size | 86,126 |
vox-format
vox-format
is a parser and encoder for MagicaVoxel's VOX files.
In your Cargo.toml
add:
[dependencies]
vox-format = "0.1"
let vox_data = vox_format::from_file("test_files/glider.vox")?;
println!("{:#?}", vox_data);