(self, renderer, gc, tpath, affine, rgbFace)
| 167 | |
| 168 | class withEffect(effect_class): |
| 169 | def draw_path(self, renderer, gc, tpath, affine, rgbFace): |
| 170 | super().draw_path(renderer, gc, tpath, affine, rgbFace) |
| 171 | renderer.draw_path(gc, tpath, affine, rgbFace) |
| 172 | |
| 173 | withEffect.__name__ = f"with{effect_class.__name__}" |
| 174 | withEffect.__qualname__ = f"with{effect_class.__name__}" |