()
| 137 | |
| 138 | |
| 139 | def two_angle_test2() -> None: |
| 140 | print("two_angle_test2") |
| 141 | startPos = Point(0, 0) |
| 142 | hexagon_angles = [ |
| 143 | HexagonAngle.UP, |
| 144 | HexagonAngle.DOWN, |
| 145 | ] |
| 146 | points = gen_points(hexagon_angles, LED_PER_STRIP, startPos) |
| 147 | print(points) |
| 148 | # assert len(points) == LED_PER_STRIP * 2, f"Expected {LED_PER_STRIP * 2} points, got {len(points)} points" |
| 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]: |
nothing calls this directly
no test coverage detected