bvh_anim_parser 1.0.1

A .bvh file parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # IGNORE docs.rs, GO TO GITHUB README.md
//! Go straight to Github README.md for documentation: \
//! [https://github.com/WojtekPachowiak/bvh_anim_parser](https://github.com/WojtekPachowiak/bvh_anim_parser)
//!
//! Especially the examples/examples.rs file for exhaustive usage:
//! [https://github.com/WojtekPachowiak/bvh_anim_parser/blob/main/examples/example.rs](https://github.com/WojtekPachowiak/bvh_anim_parser/blob/main/examples/example.rs)

pub mod types;
pub mod parse;
pub mod utils;


#[cfg(feature = "visualize")]
pub mod visualize;