(self, legend, orig_handle,
xdescent, ydescent, width, height, fontsize, trans)
| 349 | return p |
| 350 | |
| 351 | def create_artists(self, legend, orig_handle, |
| 352 | xdescent, ydescent, width, height, fontsize, trans): |
| 353 | # docstring inherited |
| 354 | p = self._create_patch(legend, orig_handle, |
| 355 | xdescent, ydescent, width, height, fontsize) |
| 356 | self.update_prop(p, orig_handle, legend) |
| 357 | p.set_transform(trans) |
| 358 | return [p] |
| 359 | |
| 360 | |
| 361 | class HandlerStepPatch(HandlerBase): |
nothing calls this directly
no test coverage detected