A c3d parser and eventually also a writer and editor written in Rust. It can be compiled to WebAssembly and, as a result, is available in 20+ languages.
Load a c3d file:
rust
use c3dio::{C3d, C3dParseError};
let c3d_data = C3d::load("test.c3d");
Load only the parameters/header (no data):
rust
use c3dio::{C3d, C3dParseError};
let c3d_parameters = C3d::load_parameters("test.c3d");
PRs, feature requests, and issues are welcome!
c3dio is part of the biomech.dev family of open-source libraries. Consider supporting our work to help us contribute more to the body of biomechanics software.