Coverage for trimesh/path/__init__.py: 43%
7 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-24 04:40 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-24 04:40 +0000
1"""
2trimesh.path
3-------------
5Handle 2D and 3D vector paths such as those contained in an
6SVG or DXF file.
7"""
9try:
10 from .path import Path2D, Path3D
11except BaseException as E:
12 from .. import exceptions
14 Path2D = exceptions.ExceptionWrapper(E)
15 Path3D = exceptions.ExceptionWrapper(E)
17# explicitly add objects to all as per pep8
18__all__ = ["Path2D", "Path3D"]