flipPyDot icon indicating copy to clipboard operation
flipPyDot copied to clipboard

Example prints both width and height as 28 even though the Panel is declared as 7x28

Open FutureSharks opened this issue 5 months ago • 0 comments

Heya, If I run the examples/test_pattern.py file, it prints this:

# python test_pattern.py
Screen preview requested, but cv2 not loaded, previews will not be generated
Panel width: 28
Panel height: 28

But the Panel is declared as 28x7:

panel = Panel([
    [1],
    [2],
    [3],
    [4],
], 28, 7, module_rotation=0, screen_preview=True)

FutureSharks avatar Jul 29 '25 12:07 FutureSharks