use-mesh 0.0.6

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

Mesh primitives for the RustUse geometry workspace.

`use-mesh` starts with lightweight mesh count and index records.

## Example

```rust
use use_mesh::Mesh;

let mesh = Mesh::new(8, 12, 6).expect("valid counts");

assert_eq!(mesh.edge_count(), 12);
```