18 lines
459 B
Python
18 lines
459 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
|
|
|
|
__All__ = [
|
|
"CreateInvoluteRack",
|
|
"CreateCycloideGear",
|
|
"CreateInvoluteGear",
|
|
"CreateBevelGear",
|
|
"involute_rack",
|
|
"involute_tooth",
|
|
"bevel_tooth"
|
|
]
|
|
|