(self)
| 109 | self.bbox = bbox |
| 110 | |
| 111 | def get_path(self): |
| 112 | # docstring inherited |
| 113 | x0, y0, x1, y1 = self.bbox.extents |
| 114 | return Path._create_closed([(x0, y0), (x1, y0), (x1, y1), (x0, y1)]) |
| 115 | |
| 116 | |
| 117 | class BboxConnector(Patch): |
no test coverage detected