Expand description
§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
use use_manifold::{BoundaryKind, Manifold, ManifoldDimension};
let manifold = Manifold::new(ManifoldDimension::new(2).unwrap(), BoundaryKind::WithoutBoundary);
assert_eq!(manifold.dimension().value(), 2);Structs§
- Manifold
- A lightweight manifold descriptor.
- Manifold
Dimension - A non-negative manifold dimension.
Enums§
- Boundary
Kind - Boundary metadata for a manifold.