use-congruence 0.0.6

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

Congruence helpers for the RustUse geometry workspace.

use-congruence begins with tolerance-aware length comparison primitives and leaves full shape congruence algorithms to future focused crates.

Example

use use_congruence::CongruenceTolerance;

let tolerance = CongruenceTolerance::new(0.01).expect("non-negative tolerance");

assert!(tolerance.matches_lengths(3.0, 3.005));