(self, gc, tpath, affine, rgbFace=None)
| 104 | return object.__getattribute__(self, name) |
| 105 | |
| 106 | def draw_path(self, gc, tpath, affine, rgbFace=None): |
| 107 | for path_effect in self._path_effects: |
| 108 | path_effect.draw_path(self._renderer, gc, tpath, affine, |
| 109 | rgbFace) |
| 110 | |
| 111 | def draw_markers( |
| 112 | self, gc, marker_path, marker_trans, path, *args, **kwargs): |
no test coverage detected