2026-07-24 03:58:19 +00:00
|
|
|
"""
|
|
|
|
|
ViewDesignEngine — CAD computational geometry engine for Python.
|
|
|
|
|
|
|
|
|
|
Submodules:
|
2026-07-24 07:04:55 +00:00
|
|
|
vde.core — Point3D, Vector3D, AABB3D, Polygon2D, convex hull, distance, transforms
|
2026-07-24 03:58:19 +00:00
|
|
|
vde.curves — BezierCurve, BSplineCurve, NurbsCurve
|
2026-07-24 07:04:55 +00:00
|
|
|
vde.mesh — delaunay_2d, delaunay_3d, HalfedgeMesh
|
|
|
|
|
vde.sdf — SdfNode, CSG tree, marching cubes mesh conversion
|
2026-07-24 03:58:19 +00:00
|
|
|
"""
|
2026-07-24 07:04:55 +00:00
|
|
|
from ._vde import core, curves, mesh, sdf
|
2026-07-24 03:58:19 +00:00
|
|
|
|
2026-07-24 11:33:09 +00:00
|
|
|
__version__ = "3.2.0"
|
2026-07-24 07:04:55 +00:00
|
|
|
__all__ = ["core", "curves", "mesh", "sdf"]
|