- Attempt to improve numerical stability by enclosing approximately co-spherical points.
- Leverage move-to-front heuristic to prevent panic due to numerical instability.
- Let
Enclosing::contains
panic for infinite points.
- Lower trait bounds on
Ball
andEnclosing
. - Use
T
in favor ofR
as doesnalgebra
. - Allow
no_std
by gatingstacker
dependency andDeque
implementations behindstd
feature.
- Replace
Point
withOPoint
supporting arithmetic at compile-time on stable Rust. - Replace
ArrayVec<T, { D + 1 }>
withOVec<T, DimNameSum<D, U1>>
supporting stabe Rust.
- Update dependencies.
- Add more tests.
- Update documentation.
- Implement minimum enclosing ball.