The namedtuple type returned by ``MathTextParser("agg").parse(...)``. Attributes ---------- ox, oy : float The offsets are always zero. width, height, depth : float The global metrics. image : 2D array of uint8 A raster image.
| 94 | |
| 95 | |
| 96 | class RasterParse(NamedTuple): |
| 97 | """ |
| 98 | The namedtuple type returned by ``MathTextParser("agg").parse(...)``. |
| 99 | |
| 100 | Attributes |
| 101 | ---------- |
| 102 | ox, oy : float |
| 103 | The offsets are always zero. |
| 104 | width, height, depth : float |
| 105 | The global metrics. |
| 106 | image : 2D array of uint8 |
| 107 | A raster image. |
| 108 | """ |
| 109 | ox: float |
| 110 | oy: float |
| 111 | width: float |
| 112 | height: float |
| 113 | depth: float |
| 114 | image: NDArray[np.uint8] |
| 115 | |
| 116 | RasterParse.__module__ = "matplotlib.mathtext" |
| 117 |
no outgoing calls
no test coverage detected
searching dependent graphs…