Hi,
I am trying to save my file with Big Blue Saw DXF output
But I get this message
traceback (most recent call last):
File "inch_dxf_outlines.py", line 200, in <module>
e.affect()
File "C:\Program Files\Inkscape\share\extensions\inkex.py", line 268, in affect
self.effect()
File "inch_dxf_outlines.py", line 118, in effect
h = inkex.unittouu(self.document.getroot().xpath('@height',namespaces=inkex.NSS)[0])
AttributeError: 'module' object has no attribute 'unittouu'
and after I press ok I get
The same problem happen when I save as better dxf
How can I solve this ? I am trying to save my file as a dxf to print it with laser cutter. The dxf cutting plotter extensions ruin my design.
Thanks in advance.
Saving with Big Blue Saw DXF output
-
- Posts: 2344
- Joined: Sun Apr 14, 2013 12:04 pm
- Location: Michigan, USA
Re: Saving with Big Blue Saw DXF output
I just save-a-copy-as DXF. I'd send BBS a sample file of each output option.
Have a nice day.
I'm using Inkscape 0.92.2 (5c3e80d, 2017-08-06), 64 bit win8.1
The Inkscape manual has lots of helpful info! http://tavmjong.free.fr/INKSCAPE/MANUAL/html/
I'm using Inkscape 0.92.2 (5c3e80d, 2017-08-06), 64 bit win8.1
The Inkscape manual has lots of helpful info! http://tavmjong.free.fr/INKSCAPE/MANUAL/html/
Re: Saving with Big Blue Saw DXF output
I found the answer here
http://www.shapeoko.com/forum/viewtopic.php?f=6&t=5506
http://www.shapeoko.com/forum/viewtopic.php?f=6&t=5506
Essentially, the line in "inch_dxf_outlines.py" in the extensions folder,
h = inkex.unittouu(self.document.getroot().xpath('@height',namespaces=inkex.NSS)[0])
should read
h = self.unittouu(self.document.getroot().xpath('@height',namespaces=inkex.NSS)[0])
that is, replace the first "inkex" with "self", and save the file. Ensure that Inkscape isn't running while making the change.