summaryrefslogtreecommitdiff
path: root/src/run.py
diff options
context:
space:
mode:
authorJoshua Shreve <j.a.shreve@gmail.com>2021-07-07 21:11:14 -0400
committerJoshua Shreve <j.a.shreve@gmail.com>2021-07-07 21:11:14 -0400
commit7f9e6386a5b7c0c30cacb1c963fdd676645f0637 (patch)
tree0c873c623407162680b340256160150db9a4b94f /src/run.py
parentddc52e6dce23404fc6a4a76417cf6bf92ef4d5e7 (diff)
Temporary version as the cadquery and solid python versions are merged by use of helper functions. Added a screw to the thumb cluster. Cadquery baseplate now has counterbores and actual solid geometry that is autogenerated, which is not possible in solid/OpenSCAD by the current methodology as it requires finding and extruding edges.
Diffstat (limited to 'src/run.py')
-rw-r--r--src/run.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/run.py b/src/run.py
index b70a787..c98b474 100644
--- a/src/run.py
+++ b/src/run.py
@@ -3,14 +3,9 @@
# preference. You may want to back it up as another file name to prevent the generator from
# overwriting your config history.
-# import src.generate_configuration as cfg
-# cfg.save_config()
-
# ENGINE = 'solid'
ENGINE = 'cadquery'
-if ENGINE == 'solid':
- exec(open('dactyl_manuform.py').read())
+from src.dactyl_manuform import *
-if ENGINE == 'cadquery':
- exec(open('dactyl_manuform_cadquery.py').read())
+run() \ No newline at end of file