22 lines
419 B
Python
22 lines
419 B
Python
|
|
"""
|
||
|
|
vde.mesh — Mesh generation and processing.
|
||
|
|
|
||
|
|
Re-exports from the native _vde.mesh submodule:
|
||
|
|
delaunay_2d, delaunay_3d, DelaunayResult, TetrahedronMesh, HalfedgeMesh
|
||
|
|
"""
|
||
|
|
from vde._vde.mesh import (
|
||
|
|
delaunay_2d,
|
||
|
|
delaunay_3d,
|
||
|
|
DelaunayResult,
|
||
|
|
TetrahedronMesh,
|
||
|
|
HalfedgeMesh,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"delaunay_2d",
|
||
|
|
"delaunay_3d",
|
||
|
|
"DelaunayResult",
|
||
|
|
"TetrahedronMesh",
|
||
|
|
"HalfedgeMesh",
|
||
|
|
]
|