(page: fitz.Page, x: float, y: float, w: float, h: float, label: str, fill, stroke, color=TEXT)
| 60 | |
| 61 | |
| 62 | def chip(page: fitz.Page, x: float, y: float, w: float, h: float, label: str, fill, stroke, color=TEXT) -> None: |
| 63 | rect(page, (x, y, x + w, y + h), fill=fill, stroke=stroke, width=0.55) |
| 64 | text(page, (x + 2, y + 2, x + w - 2, y + h + 4), label, 10.8, color=color) |
| 65 | |
| 66 | |
| 67 | def arrow(page: fitz.Page, x1: float, y: float, x2: float) -> None: |
no test coverage detected