1
2
3
4
// Structures implemented for a variety of types
pub trait CloseEnough {
    fn is_close_enough_to(&self, other: &Self, tolerance: f32) -> bool;
}