1
2
3
4
5
6
7
8
9
mod convert;
mod projection;
#[cfg(feature = "wolfram_wxf")]
mod wolfram;

pub trait Distance {
    type Other;
    fn distance(&self, other: &Self::Other) -> f32;
}