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