surfaces/surf/__init__.py
2012-05-07 23:18:18 -06:00

8 lines
129 B
Python

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