13 lines
391 B
Python
13 lines
391 B
Python
|
|
"""
|
||
|
|
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
|
||
|
|
"""
|
||
|
|
from ._vde import core, curves, mesh
|
||
|
|
|
||
|
|
__version__ = "1.0.0"
|
||
|
|
__all__ = ["core", "curves", "mesh"]
|