(scene, output_path: Path, title: str = "")
| 674 | |
| 675 | |
| 676 | def export_svg(scene, output_path: Path, title: str = "") -> None: |
| 677 | output_path.write_bytes(_build_svg(scene, title)) |
| 678 | |
| 679 | |
| 680 | def export_pdf(scene, output_path: Path) -> None: |
no test coverage detected