-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Claire V. Hammond <61138239+cvhammond@users.noreply.github.com>
- Loading branch information
Showing
1 changed file
with
1 addition
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1 @@ | ||
# c3dio | ||
|
||
![Crates.io](https://img.shields.io/crates/v/c3dio.svg) | ||
|
||
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**. | ||
|
||
## Usage | ||
|
||
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"); | ||
``` | ||
|
||
## Contributing | ||
|
||
PRs, feature requests, and issues are welcome! | ||
|
||
## Support | ||
|
||
c3dio is part of the [biomech.dev](https://biomech.dev) family of open-source libraries. Consider supporting our work to help us contribute more to the body of biomechanics software. | ||
c3dio has been moved to a package in [Chiron](https://github.com/cvhammond/chiron). |