pub trait AsRangedCoord: Sized {
    type CoordDescType: Ranged<ValueType = Self::Value> + From<Self>;
    type Value;
}
Expand description

The trait for the type that can be converted into a ranged coordinate axis

Required Associated Types

Type to describe a coordinate system

Type for values in the given coordinate system

Implementations on Foreign Types

Implementors