summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorAlvin Penner <penner@vaxxine.com>2009-02-01 00:04:19 +0000
committeralvinpenner <alvinpenner@users.sourceforge.net>2009-02-01 00:04:19 +0000
commitb5f6bf51366c2018a3d8c7bff64538cff77ccda7 (patch)
tree1999008fc71bb0388a1a78211653d62dfcc1faf8 /share
parentStore the snapper tolerances in the snap-preferences instead of in each snapp... (diff)
downloadinkscape-b5f6bf51366c2018a3d8c7bff64538cff77ccda7.tar.gz
inkscape-b5f6bf51366c2018a3d8c7bff64538cff77ccda7.zip
add group code 70 to LWPOLYLINE
(bzr r7209)
Diffstat (limited to 'share')
-rwxr-xr-xshare/extensions/dxf_outlines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/extensions/dxf_outlines.py b/share/extensions/dxf_outlines.py
index 2e619bdc9..ad2ef49e2 100755
--- a/share/extensions/dxf_outlines.py
+++ b/share/extensions/dxf_outlines.py
@@ -72,7 +72,7 @@ class MyEffect(inkex.Effect):
if len(self.poly) == 1:
return
self.handle += 1
- self.dxf_add(" 0\nLWPOLYLINE\n 5\n%x\n100\nAcDbEntity\n 8\n0\n100\nAcDbPolyline\n 90\n%d\n" % (self.handle, len(self.poly)))
+ self.dxf_add(" 0\nLWPOLYLINE\n 5\n%x\n100\nAcDbEntity\n 8\n0\n100\nAcDbPolyline\n 90\n%d\n 70\n0\n" % (self.handle, len(self.poly)))
for i in range(len(self.poly)):
self.dxf_add(" 10\n%f\n 20\n%f\n 30\n0.0\n" % (self.poly[i][0],self.poly[i][1]))
def dxf_spline(self,csp):