Trait cgmath::prelude::MetricSpace [−][src]
pub trait MetricSpace: Sized {
type Metric;
fn distance2(self, other: Self) -> Self::Metric;
fn distance(self, other: Self) -> Self::Metric
where
Self::Metric: Float,
{ ... }
}
Expand description
A type with a distance function between values.
Examples are vectors, points, and quaternions.