surfaces/surf/__init__.py

8 lines
129 B
Python

from .geometry import Vertex, Edge, PolygonMesh
__all__ = [
Vertex.__name__,
Edge.__name__,
PolygonMesh.__name__,
]