use-manifold 0.0.6

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

Basic manifold vocabulary for the RustUse geometry workspace.

`use-manifold` provides metadata records for dimensions and boundary kinds. It does not attempt to
be a differential-geometry engine.

## Example

```rust
use use_manifold::{BoundaryKind, Manifold, ManifoldDimension};

let manifold = Manifold::new(ManifoldDimension::new(2).unwrap(), BoundaryKind::WithoutBoundary);

assert_eq!(manifold.dimension().value(), 2);
```