This is a c3d file format parser/reader written in rust. C3d is a biomechanics data format wildly used in the field of motion cpature.
The parser is written with the guidance of the c3d.org specification and the python parser from py-c3d.
features
usage
```rust
use c3d_rs::C3dAdapter;
let mut file = File::open("somefile")?;
let mut buf: Vec
let mut cursor = Cursor::new(buf)
/// adapter accepts impl Read + Seek. let adapter = C3dAdapter::new(&mut file)?.construct()?; let adapter = C3dAdapter::new(&mut buf[..])?.construct()?;
/// read labels into Vec
/// reading (frame, ponts, analog) from iterator for (frameidx, pointsdata, optionalanalogdata) in adapter.reader()?.into_iter() {
}
/// working with vendor specific parameter. let param = adapter.parameter.unwrap().get("GROUP:PARAMETER").unwrap();
```