use-face 0.0.6

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

Face primitives for the RustUse geometry workspace.

`use-face` owns the generic `Face` type for the geometry facade and keeps face boundaries as index
lists.

## Example

```rust
use use_face::Face;

let face = Face::new(vec![0, 1, 2]).expect("at least three vertices");

assert_eq!(face.edge_count(), 3);
```