(self)
| 140 | transferred to the Agg image by the Agg backend. |
| 141 | """ |
| 142 | def __init__(self): |
| 143 | self.ox = 0 |
| 144 | self.oy = 0 |
| 145 | self.image = None |
| 146 | self.mode = 'bbox' |
| 147 | self.bbox = [0, 0, 0, 0] |
| 148 | MathtextBackend.__init__(self) |
| 149 | |
| 150 | def _update_bbox(self, x1, y1, x2, y2): |
| 151 | self.bbox = [min(self.bbox[0], x1), |