(self, path, transform, clip=False, simplify=None)
| 546 | return self.image_magnification |
| 547 | |
| 548 | def _convert_path(self, path, transform, clip=False, simplify=None): |
| 549 | if clip: |
| 550 | clip = (0.0, 0.0, self.width * 72.0, self.height * 72.0) |
| 551 | else: |
| 552 | clip = None |
| 553 | return _path.convert_to_string( |
| 554 | path, transform, clip, simplify, None, |
| 555 | 6, [b"m", b"l", b"", b"c", b"cl"], True).decode("ascii") |
| 556 | |
| 557 | def _get_clip_cmd(self, gc): |
| 558 | clip = [] |
no outgoing calls
no test coverage detected