summaryrefslogtreecommitdiff
path: root/src/run.py
blob: b70a787105c493c1d9bc5c267bc5882197ee869f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# System will run the current "run_config.json" file in the directory.
# Use generator configuration to create it, or edit it directly, depending on your
# 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())

if ENGINE == 'cadquery':
    exec(open('dactyl_manuform_cadquery.py').read())