Commit 5940f06e authored by sumpfralle's avatar sumpfralle

added the "-nc" (no curves) parameter for pstoedit (maybe not necessary - but probably safer)


git-svn-id: https://pycam.svn.sourceforge.net/svnroot/pycam/trunk@913 bbaffbd6-741e-11dd-a85d-61de82d9cad9
parent 651ddda0
...@@ -55,7 +55,7 @@ def convert_eps2dxf(eps_filename, dxf_filename, location=None): ...@@ -55,7 +55,7 @@ def convert_eps2dxf(eps_filename, dxf_filename, location=None):
process = subprocess.Popen(stdin=subprocess.PIPE, stdout=subprocess.PIPE, process = subprocess.Popen(stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, stderr=subprocess.PIPE,
args = [location, args = [location,
"-dt", "-dt", "-nc",
"-f", "dxf:-polyaslines", "-f", "dxf:-polyaslines",
eps_filename, dxf_filename]) eps_filename, dxf_filename])
except OSError, err_msg: except OSError, err_msg:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment