1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use crate::SPoint;
use super::*;

impl Debug for AxialPoint {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Axial")
            .field("q", &self.q)
            .field("s", &(-self.q - self.r))
            .field("r", &self.r)
            .finish()
    }
}

impl Display for AxialPoint {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_tuple("")
            .field(&self.q)
            .field(&(-self.q - self.r))
            .field(&self.r)
            .finish()
    }
}

impl Debug for SPoint {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("StepPoint")
            .field("s", &self.s)
            .field("q", &self.q)
            .field("r", &self.r)
            .finish()
    }
}

impl Display for SPoint {
    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.debug_tuple("StepPoint")
            .field(&self.s)
            .field(&self.q)
            .field(&self.r)
            .finish()
    }
}