surfaces/surf/__init__.py

7 lines
104 B
Python
Raw Normal View History

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