1
0
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:
Chris Palmer
2012-03-27 18:12:04 +01:00
parent 750ea16468
commit 069dcdfc3d
6 changed files with 12 additions and 11 deletions

View File

@@ -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()
#