(self, stroke=True, fill=False)
| 623 | _writeln(self.fh, r"\pgfdecoratecurrentpath{random steps}") |
| 624 | |
| 625 | def _pgf_path_draw(self, stroke=True, fill=False): |
| 626 | actions = [] |
| 627 | if stroke: |
| 628 | actions.append("stroke") |
| 629 | if fill: |
| 630 | actions.append("fill") |
| 631 | _writeln(self.fh, r"\pgfusepath{%s}" % ",".join(actions)) |
| 632 | |
| 633 | def option_scale_image(self): |
| 634 | # docstring inherited |
no test coverage detected