use-cell 0.0.6

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

Cell primitives for the RustUse geometry workspace.

`use-cell` provides small cell descriptors for representation-oriented geometry. Cell-complex
collections live in `use-complex`, which focuses on geometric complexes rather than complex numbers.

## Example

```rust
use use_cell::Cell;

let cell = Cell::new(2, 4).unwrap();

assert_eq!(cell.dimension(), 2);
assert_eq!(cell.boundary_count(), 4);
```