At position (*ox*, *oy*), draw the glyph specified by the remaining parameters (see `get_metrics` for their detailed description).
(self, output: Output, ox: float, oy: float, font: str,
font_class: str, sym: str, fontsize: float, dpi: float)
| 292 | return info.metrics |
| 293 | |
| 294 | def render_glyph(self, output: Output, ox: float, oy: float, font: str, |
| 295 | font_class: str, sym: str, fontsize: float, dpi: float) -> None: |
| 296 | """ |
| 297 | At position (*ox*, *oy*), draw the glyph specified by the remaining |
| 298 | parameters (see `get_metrics` for their detailed description). |
| 299 | """ |
| 300 | info = self._get_info(font, font_class, sym, fontsize, dpi) |
| 301 | output.glyphs.append((ox, oy, info)) |
| 302 | |
| 303 | def render_rect_filled(self, output: Output, |
| 304 | x: float, y: float, w: float, h: float) -> None: |