1
0
mirror of https://github.com/nophead/Mendel90.git synced 2025-01-16 20:38:15 +01:00
Mendel90/make_machine.py
Chris Palmer ef0406dc29 Fixed some assembly views so they work for Huxley.
Idler lever added to Huxley extruder.
Extruders now virtual.
views.py now allows camera to be specified using $vpt, $vpr and $vpd.
make_machine.py now does the accessories as well.
2016-01-13 10:11:55 +00:00

23 lines
478 B
Python
Executable File

#!/usr/bin/env python
import sys
from bom import boms
from sheets import sheets
from stls import stls
from plates import plates
from accessories import accessories
def make_machine(machine):
boms(machine)
sheets(machine)
stls(machine)
accessories(machine)
plates(machine)
if __name__ == '__main__':
if len(sys.argv) > 1:
make_machine(sys.argv[1])
else:
print("usage: make_machine [mendel|sturdy|your_machine]")
sys.exit(1)