mirror of
https://github.com/nophead/Mendel90.git
synced 2025-08-20 03:51:20 +02:00
Openscad_cl was found to be unecessary as the Python wrapper does the same thing.
Openscad.exe has been removed, README.txt now specifies the required version. Stls.py and Sheets.py now use relative include paths. openscad.py now prints the command it is executing.
This commit is contained in:
4
stls.py
4
stls.py
@@ -40,7 +40,7 @@ def stls(machine, parts = None):
|
||||
f.close()
|
||||
|
||||
#
|
||||
# Decide which fils to make
|
||||
# Decide which files to make
|
||||
#
|
||||
if parts:
|
||||
targets = list(parts) #copy the list so we dont modify the list passed in
|
||||
@@ -66,7 +66,7 @@ def stls(machine, parts = None):
|
||||
#
|
||||
stl_maker_name = source_dir + "/stl.scad"
|
||||
f = open(stl_maker_name, "w")
|
||||
f.write("use <%s/%s>\n" % (source_dir, filename))
|
||||
f.write("use <%s>\n" % filename)
|
||||
f.write("%s();\n" % module);
|
||||
f.close()
|
||||
#
|
||||
|
Reference in New Issue
Block a user