(self, output: Output, x: float, y: float)
| 1268 | self._update_metrics() |
| 1269 | |
| 1270 | def render(self, output: Output, x: float, y: float) -> None: |
| 1271 | self.fontset.render_glyph( |
| 1272 | output, x - self._metrics.xmin, y + self._metrics.ymin, |
| 1273 | self.font, self.font_class, self.c, self.fontsize, self.dpi) |
| 1274 | |
| 1275 | |
| 1276 | class List(Box): |
nothing calls this directly
no test coverage detected