mesh-tools 0.4.0

A Rust library for generating 3D meshes and exporting them to glTF/GLB files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    println!("gltf-export library");
    println!("===================");
    println!("This is a library crate with examples in the 'examples' directory.");
    println!("Run examples with 'cargo run --example <example_name>'");
    println!("");
    println!("Available examples:");
    println!("  - simple_box      Simple box export example");
    println!("  - materials_demo  Demo of different material types");
    println!("  - texture_demo    Demo of textured materials");
    println!("  - hierarchy_demo  Demo of node hierarchies and parent-child relationships");
    println!("  - custom_mesh_demo Demo of custom meshes with user-provided UV coordinates");
    println!("  - primitives_demo  Demo of basic 3D primitives (sphere, cylinder, plane, etc.)");
}