From 43a97878ce14b72f0981164f87f2e35e14151312 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:22:09 +0200 Subject: Adding upstream version 110.0.1. Signed-off-by: Daniel Baumann --- third_party/rust/euclid/src/approxeq.rs | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 third_party/rust/euclid/src/approxeq.rs (limited to 'third_party/rust/euclid/src/approxeq.rs') diff --git a/third_party/rust/euclid/src/approxeq.rs b/third_party/rust/euclid/src/approxeq.rs new file mode 100644 index 0000000000..911f5268a4 --- /dev/null +++ b/third_party/rust/euclid/src/approxeq.rs @@ -0,0 +1,42 @@ +// Copyright 2013 The Servo Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +/// Trait for testing approximate equality +pub trait ApproxEq { + /// Default epsilon value + fn approx_epsilon() -> Eps; + + /// Returns `true` is this object is approximately equal to the other one, using + /// a provided epsilon value. + fn approx_eq_eps(&self, other: &Self, approx_epsilon: &Eps) -> bool; + + /// Returns `true` is this object is approximately equal to the other one, using + /// the `approx_epsilon()` epsilon value. + fn approx_eq(&self, other: &Self) -> bool { + self.approx_eq_eps(other, &Self::approx_epsilon()) + } +} + +macro_rules! approx_eq { + ($ty:ty, $eps:expr) => { + impl ApproxEq<$ty> for $ty { + #[inline] + fn approx_epsilon() -> $ty { + $eps + } + #[inline] + fn approx_eq_eps(&self, other: &$ty, approx_epsilon: &$ty) -> bool { + num_traits::Float::abs(*self - *other) < *approx_epsilon + } + } + }; +} + +approx_eq!(f32, 1.0e-6); +approx_eq!(f64, 1.0e-6); -- cgit v1.2.3