use-polyhedral-net 0.0.6

Polyhedral net primitives for the RustUse geometry workspace
Documentation
  • Coverage
  • 100%
    9 out of 9 items documented1 out of 9 items with examples
  • Size
  • Source code size: 4.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 367.81 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s 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-polyhedral-net

Polyhedral net primitives for the RustUse geometry workspace.

use-polyhedral-net owns polyhedral-net records and intentionally avoids the shorter crate name use-net, which belongs to another RustUse domain.

Example

use use_polyhedral_net::{NetEdge, PolyhedralNet};

let net = PolyhedralNet::new(6, vec![NetEdge::new(0, 1)]).expect("valid net");

assert_eq!(net.face_count(), 6);