(self, width: float, height: float, depth: float, state: ParserState)
| 1518 | """ |
| 1519 | |
| 1520 | def __init__(self, width: float, height: float, depth: float, state: ParserState): |
| 1521 | super().__init__(width, height, depth) |
| 1522 | self.fontset = state.fontset |
| 1523 | |
| 1524 | def render(self, output: Output, # type: ignore[override] |
| 1525 | x: float, y: float, w: float, h: float) -> None: |