Draw a filled rectangle.
(self, x, y, w, h, color)
| 196 | pass |
| 197 | |
| 198 | def fill_rect(self, x, y, w, h, color): |
| 199 | """Draw a filled rectangle.""" |
| 200 | if VERBOSE: |
| 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.""" |