use-origami 0.0.6

Origami model primitives for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# use-origami

Origami model primitives for the RustUse geometry workspace.

`use-origami` provides model summaries and leaves foldability algorithms to focused crates.

## Example

```rust
use use_origami::OrigamiModel;

let model = OrigamiModel::new(8, 4).expect("positive counts");

assert_eq!(model.crease_count(), 8);
```