use-configuration 0.0.6

Geometric configuration 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-configuration

Geometric configuration primitives for the RustUse geometry workspace.

`use-configuration` stores lightweight configuration metadata, including the Schlafli double six,
with incidence support from `use-incidence`. It does not implement cubic-surface algorithms.

## Example

```rust
use use_configuration::SchlafliDoubleSix;

let double_six = SchlafliDoubleSix::new();

assert_eq!(double_six.configuration().point_count(), 12);
assert_eq!(double_six.incidence_structure().line_count(), 30);
```