#gltf #cli #3d #command-line

app mesh_to_vox

A program to convert triangle meshes to voxels

2 releases

0.1.1 May 18, 2024
0.1.0 May 18, 2024

#12 in Data formats

Download history 221/week @ 2024-05-13 53/week @ 2024-05-20

274 downloads per month

Unlicense

505KB
1.5K SLoC

MeshToVox

A Command line ultility to convert triangle meshes into voxels.

Cli Usage

Program Arguments: * --f string <input path>: (required) Supported Formats : glb/gltf
* --o string <output path>: (required) Supported Formats : .gltf, .vox
* --dim int <size of voxel grid>: (default: 1022)
* --timer bool: (default: false) Outputs profiling imformation
* --sparse bool: (default: true) Removes non visible voxel faces ie inside of a sphere. Compatible with all meshes. Ignored for vox file format. Significantly reduces file size but takes more time and memory.

Installation

Cargo is requried for installation.
You can either install with cargo install mesh_to_vox. Or clone the repo and run with cargo run --release -- (your argument)

Examples:

cargo install mesh_to_vox; mesh_to_vox --f data/original/person.glb --o data/test_gltf/test.gltf --dim 2048 --sparse true example

Todo

  • Multi-Threading / Gpu support
  • Directed cycle graph output format
  • Normals

Dependencies

~18MB
~201K SLoC