()
| 190 | |
| 191 | |
| 192 | def generate_black_points() -> list[Point]: |
| 193 | starting_point = BLACK_ANCHOR_POINT.copy() |
| 194 | hexagon_angles = [ |
| 195 | HexagonAngle.LEFT_UP, |
| 196 | HexagonAngle.LEFT_UP, |
| 197 | HexagonAngle.UP, |
| 198 | HexagonAngle.RIGHT_UP, |
| 199 | HexagonAngle.RIGHT_DOWN, |
| 200 | HexagonAngle.DOWN, |
| 201 | HexagonAngle.LEFT_DOWN, |
| 202 | HexagonAngle.UP, |
| 203 | HexagonAngle.LEFT_UP, |
| 204 | HexagonAngle.UP, |
| 205 | HexagonAngle.RIGHT_UP, |
| 206 | ] |
| 207 | points = gen_points(hexagon_angles, LED_PER_STRIP, starting_point) |
| 208 | return points |
| 209 | |
| 210 | |
| 211 | def generate_green_points() -> list[Point]: |
no test coverage detected