surfaces/surf/__init__.py
2012-05-29 17:33:15 -06:00

9 lines
135 B
Python

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