(self)
| 52 | return Point(self.x, self.y) |
| 53 | |
| 54 | def __repr__(self) -> str: |
| 55 | x_rounded = round(self.x, 2) |
| 56 | y_rounded = round(self.y, 2) |
| 57 | return f"({x_rounded}, {y_rounded})" |
| 58 | |
| 59 | |
| 60 | def next_point(pos: Point, angle: HexagonAngle, space: float) -> Point: |