use-polytope 0.0.6

Polytope concepts for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# use-polytope

Polytope concepts for the RustUse geometry workspace.

`use-polytope` provides small n-dimensional polytope descriptors and intentionally avoids a full
computational geometry engine.

## Example

```rust
use use_polytope::Polytope;

let polytope = Polytope::new(4, 8, 16).expect("valid counts");

assert_eq!(polytope.dimension(), 4);
assert_eq!(polytope.vertex_count(), 8);
```