use-unfolding 0.0.6

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

Unfolding primitives for the RustUse geometry workspace.

`use-unfolding` provides unfold-step and plan records that can later back polyhedral-net workflows.

## Example

```rust
use use_unfolding::{UnfoldingPlan, UnfoldingStep};

let plan = UnfoldingPlan::new(vec![UnfoldingStep::new(0, 1)]);

assert_eq!(plan.step_count(), 1);
```