use-face 0.0.6

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

Face primitives for the RustUse geometry workspace.

use-face owns the generic Face type for the geometry facade and keeps face boundaries as index lists.

Example

use use_face::Face;

let face = Face::new(vec![0, 1, 2]).expect("at least three vertices");

assert_eq!(face.edge_count(), 3);