schematic-mesher 0.1.0

Generate 3D meshes from Minecraft schematics and block data
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Mesh export formats.
//!
//! This module provides exporters for various 3D formats.

pub mod gltf;
pub mod obj;
pub mod raw;

pub use gltf::export_glb;
pub use obj::{export_obj, ObjExport};
pub use raw::{export_raw, RawMeshData};