bvh_anim_parser/
lib.rs

1//! # IGNORE docs.rs, GO TO GITHUB README.md
2//! Go straight to Github README.md for documentation: \
3//! [https://github.com/WojtekPachowiak/bvh_anim_parser](https://github.com/WojtekPachowiak/bvh_anim_parser)
4//!
5//! Especially the examples/examples.rs file for exhaustive usage:
6//! [https://github.com/WojtekPachowiak/bvh_anim_parser/blob/main/examples/example.rs](https://github.com/WojtekPachowiak/bvh_anim_parser/blob/main/examples/example.rs)
7
8pub mod types;
9pub mod parse;
10pub mod utils;
11
12
13#[cfg(feature = "visualize")]
14pub mod visualize;
15