()
| 175 | |
| 176 | |
| 177 | def generate_red_points() -> list[Point]: |
| 178 | starting_point = RED_ANCHOR_POINT.copy() |
| 179 | hexagon_angles = [ |
| 180 | HexagonAngle.UP, |
| 181 | HexagonAngle.LEFT_UP, |
| 182 | HexagonAngle.LEFT_DOWN, |
| 183 | HexagonAngle.DOWN, |
| 184 | HexagonAngle.RIGHT_DOWN, |
| 185 | HexagonAngle.UP, |
| 186 | HexagonAngle.LEFT_UP |
| 187 | ] |
| 188 | points = gen_points(hexagon_angles, LED_PER_STRIP, starting_point, exclude=[5]) |
| 189 | return points |
| 190 | |
| 191 | |
| 192 | def generate_black_points() -> list[Point]: |
no test coverage detected