(scene, output_path: Path)
| 678 | |
| 679 | |
| 680 | def export_pdf(scene, output_path: Path) -> None: |
| 681 | import cairosvg |
| 682 | cairosvg.svg2pdf(bytestring=_build_svg(scene), write_to=str(output_path)) |
| 683 | |
| 684 | |
| 685 | def print_scene(scene, parent=None) -> None: |
no test coverage detected