use-archimedean 0.0.6

Archimedean solid metadata for the RustUse geometry workspace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# use-archimedean

Archimedean solid metadata for the RustUse geometry workspace.

`use-archimedean` groups named Archimedean solids such as the cuboctahedron inside one family crate.
It does not generate meshes or coordinates.

## Example

```rust
use use_archimedean::ArchimedeanSolid;

let solid = ArchimedeanSolid::Cuboctahedron;

assert_eq!(solid.name(), "cuboctahedron");
assert_eq!(solid.face_configuration(), "3.4.3.4");
```