This commit is contained in:
cjw
2026-02-12 23:22:11 +08:00
parent 7b09eb3d89
commit 89660bba4e
5988 changed files with 2517516 additions and 0 deletions
@@ -0,0 +1,18 @@
"""
trimesh.path
-------------
Handle 2D and 3D vector paths such as those contained in an
SVG or DXF file.
"""
try:
from .path import Path2D, Path3D
except BaseException as E:
from .. import exceptions
Path2D = exceptions.ExceptionWrapper(E)
Path3D = exceptions.ExceptionWrapper(E)
# explicitly add objects to all as per pep8
__all__ = ["Path2D", "Path3D"]