jord 0.16.0

Geographical Position Calculations (Ellipsoidal and Spherical models)
Documentation
/// Tests if the given [f64] is effectively 0.0.
/// Returns true iff the absolute difference between the given float and 0.0
/// is less than or equal to the difference between 1.0 and the next representable
/// value ([f64::EPSILON]).
pub(crate) fn eq_zero(f: f64) -> bool {
    eq(f, 0.0)
}

/// Determines if the two given values are effectively equal.
///
/// Returns true iff the absolute difference between the two values is less than or equal to [f64::EPSILON].
pub(crate) fn eq(left: f64, right: f64) -> bool {
    (right - left).abs() <= f64::EPSILON
}

/// Evaluates less than or equal to comparison including [equal](crate::eq) values.
pub(crate) fn lte(left: f64, right: f64) -> bool {
    left <= right || eq(left, right)
}

/// Evaluates greater than or equal to comparison including [equal](crate::eq) values.
pub(crate) fn gte(left: f64, right: f64) -> bool {
    left >= right || eq(left, right)
}