use-polyhedron 0.0.6

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

Polyhedron primitives for the RustUse geometry workspace.

`use-polyhedron` is the general 3D polyhedron crate. It starts with vertex, edge, and face records
plus count helpers.

## Example

```rust
use use_polyhedron::Polyhedron;

let polyhedron = Polyhedron::from_counts(8, 12, 6).expect("valid counts");

assert_eq!(polyhedron.euler_characteristic(), 2);
```