//! Support for the Biovision Hierarchy (BVH) motion-capture file format.
//!
//! [`Motion`] is always available: it parses fixed-size, normalized motion at
//! compile time without allocation and works in `no_std` firmware. The
//! optional `bvh` feature adds host-side parsing and conversion APIs such as
//! [`parse`], [`Clip`], and [`build_linkage_buf`].
//!
//! Use `bvh::motion!` for embedded motion data. On a host,
//! parse a complete BVH file with [`parse`], discover its linkage parameters,
//! and convert it with [`build_linkage_buf`].
pub use Motion;
/// Embed and normalize a BVH motion-capture file at compile time.
pub use crate__bvh_motion as motion;
pub use ;