Files
ViewDesignEngine/python/vde/__init__.py
T

14 lines
465 B
Python
Raw Normal View History

"""
ViewDesignEngine — CAD computational geometry engine for Python.
Submodules:
vde.core — Point3D, Vector3D, AABB3D, Polygon2D, convex hull, distance, transforms
vde.curves — BezierCurve, BSplineCurve, NurbsCurve
vde.mesh — delaunay_2d, delaunay_3d, HalfedgeMesh
vde.sdf — SdfNode, CSG tree, marching cubes mesh conversion
"""
from ._vde import core, curves, mesh, sdf
__version__ = "3.2.0"
__all__ = ["core", "curves", "mesh", "sdf"]