pub trait CoordinateBase {
    type Coord: Num + Signed + Copy + PartialEq + PartialOrd;
}
Expand description

Define a type used for coordinates.

Required Associated Types§

source

type Coord: Num + Signed + Copy + PartialEq + PartialOrd

Base coordinate type used for x and y coordinates.

Implementors§