use-manifold 0.0.6

Manifold vocabulary for the RustUse geometry workspace
Documentation
  • Coverage
  • 100%
    12 out of 12 items documented1 out of 9 items with examples
  • Size
  • Source code size: 4.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 442.89 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 3s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-geometry
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

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);