The namedtuple type returned by ``MathTextParser("path").parse(...)``. Attributes ---------- width, height, depth : float The global metrics. glyphs : list The glyphs including their positions. rect : list The list of rectangles.
| 72 | |
| 73 | |
| 74 | class VectorParse(NamedTuple): |
| 75 | """ |
| 76 | The namedtuple type returned by ``MathTextParser("path").parse(...)``. |
| 77 | |
| 78 | Attributes |
| 79 | ---------- |
| 80 | width, height, depth : float |
| 81 | The global metrics. |
| 82 | glyphs : list |
| 83 | The glyphs including their positions. |
| 84 | rect : list |
| 85 | The list of rectangles. |
| 86 | """ |
| 87 | width: float |
| 88 | height: float |
| 89 | depth: float |
| 90 | glyphs: list[tuple[FT2Font, float, CharacterCodeType, GlyphIndexType, float, float]] |
| 91 | rects: list[tuple[float, float, float, float]] |
| 92 | |
| 93 | VectorParse.__module__ = "matplotlib.mathtext" |
| 94 |
no outgoing calls
no test coverage detected
searching dependent graphs…