(self, output: Output, x: float, y: float)
| 1237 | return advance + kern |
| 1238 | |
| 1239 | def render(self, output: Output, x: float, y: float) -> None: |
| 1240 | self.fontset.render_glyph( |
| 1241 | output, x, y, |
| 1242 | self.font, self.font_class, self.c, self.fontsize, self.dpi) |
| 1243 | |
| 1244 | def shrink(self) -> None: |
| 1245 | super().shrink() |
nothing calls this directly
no test coverage detected