(self, gc, path, transform, rgbFace=None)
| 1945 | imob, Op.use_xobject, Op.grestore) |
| 1946 | |
| 1947 | def draw_path(self, gc, path, transform, rgbFace=None): |
| 1948 | # docstring inherited |
| 1949 | self.check_gc(gc, rgbFace) |
| 1950 | self.file.writePath( |
| 1951 | path, transform, |
| 1952 | rgbFace is None and gc.get_hatch_path() is None, |
| 1953 | gc.get_sketch_params()) |
| 1954 | self.file.output(self.gc.paint()) |
| 1955 | |
| 1956 | def draw_path_collection(self, gc, master_transform, paths, all_transforms, |
| 1957 | offsets, offset_trans, facecolors, edgecolors, |
no test coverage detected