Files
gears/gear/__init__.py
2014-07-09 20:56:08 +02:00

21 lines
492 B
Python

#!/usr/lib/python
from gearfunc._involute_tooth import involute_rack, involute_tooth
from gearfunc._cycloide_tooth import cycloide_tooth
from gearfunc._bevel_tooth import bevel_tooth
from gearfunc import CreateInvoluteRack, CreateCycloideGear, CreateInvoluteGear, CreateBevelGear
from tests import bspline_surf
__All__ = [
"CreateInvoluteRack",
"CreateCycloideGear",
"CreateInvoluteGear",
"CreateBevelGear",
"involute_rack",
"involute_tooth",
"bevel_tooth"
]