()
| 149 | |
| 150 | # Red is defined by this instruction tutorial: https://voidstar.dozuki.com/Guide/Chromance+Assembly+Instructions/6 |
| 151 | def find_red_anchor_point() -> list[Point]: |
| 152 | hexagon_angles = [ |
| 153 | HexagonAngle.LEFT_UP, |
| 154 | HexagonAngle.LEFT_UP, |
| 155 | HexagonAngle.UP, |
| 156 | HexagonAngle.RIGHT_UP, |
| 157 | ] |
| 158 | points = gen_points(hexagon_angles, LED_PER_STRIP, Point(0, 0), add_last=True) |
| 159 | return points |
| 160 | |
| 161 | def find_green_anchore_point() -> list[Point]: |
| 162 | hexagon_angles = [ |
no test coverage detected