surfaces/surf/__init__.py

9 lines
135 B
Python

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