pub trait HexRound {
    // Required methods
    fn round(&self) -> Hex;
    fn linear_interpolation(
        &self,
        other: FractionalHex,
        t: f64
    ) -> FractionalHex;
}

Required Methods§

Implementors§