()
| 159 | return points |
| 160 | |
| 161 | def find_green_anchore_point() -> list[Point]: |
| 162 | hexagon_angles = [ |
| 163 | HexagonAngle.RIGHT_UP, |
| 164 | HexagonAngle.RIGHT_UP, |
| 165 | HexagonAngle.UP, |
| 166 | ] |
| 167 | points = gen_points(hexagon_angles, LED_PER_STRIP, Point(0, 0), add_last=True) |
| 168 | return points |
| 169 | |
| 170 | |
| 171 | RED_ANCHOR_POINT = find_red_anchor_point()[-1] |
no test coverage detected