()
| 100 | |
| 101 | |
| 102 | def main() -> None: |
| 103 | startPos = Point(0, 0) |
| 104 | hexagon_angles = [ |
| 105 | HexagonAngle.UP, |
| 106 | HexagonAngle.RIGHT_UP, |
| 107 | HexagonAngle.RIGHT_DOWN, |
| 108 | HexagonAngle.DOWN, |
| 109 | HexagonAngle.LEFT_DOWN, |
| 110 | HexagonAngle.LEFT_UP, |
| 111 | ] |
| 112 | points = gen_points(hexagon_angles, LED_PER_STRIP, startPos) |
| 113 | |
| 114 | print(points) |
| 115 | |
| 116 | |
| 117 |
nothing calls this directly
no test coverage detected