use-congruence 0.0.6

Congruence helpers for RustUse geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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

```rust
use use_congruence::CongruenceTolerance;

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

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