Draw a rectangle outline.
(self, x, y, w, h, color)
| 201 | print(f"[MockPager] fill_rect({x}, {y}, {w}, {h}, {color:#06x})") |
| 202 | |
| 203 | def rect(self, x, y, w, h, color): |
| 204 | """Draw a rectangle outline.""" |
| 205 | if VERBOSE: |
| 206 | print(f"[MockPager] rect({x}, {y}, {w}, {h}, {color:#06x})") |
| 207 | |
| 208 | def hline(self, x, y, w, color): |
| 209 | """Draw horizontal line.""" |