1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// lib.rs homunculus crate. // // Copyright (c) 2022-2023 Douglas Lau // #![doc = include_str!("../README.md")] mod error; mod gltf; mod husk; mod mesh; mod ring; pub use error::Error; pub use husk::Husk; pub use ring::{Ring, Shading, Spoke};