FastLED 3.9.15
Loading...
Searching...
No Matches

◆ generate_black_points()

list[Point] gen.generate_black_points ( )

Definition at line 192 of file gen.py.

192def 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

References gen_points().

Referenced by unit_test().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: