summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: da7288b)
raw | patch | inline | side by side (parent: da7288b)
author | tavmjong-free <tavmjong@free.fr> | |
Wed, 28 Jul 2010 09:10:58 +0000 (11:10 +0200) | ||
committer | tavmjong-free <tavmjong@free.fr> | |
Wed, 28 Jul 2010 09:10:58 +0000 (11:10 +0200) |
share/extensions/generate_voronoi.py | patch | blob | history |
index 3359685fc58957c071f00fce07604b3782bf73f9..3d5d5e9a88b88150fe97af90ce3a8d86c32aebe6 100644 (file)
# plot Voronoi diagram
sl = voronoi.SiteList(pts)
voronoi.voronoi(sl, c)
+ path = ""
for edge in c.edges:
if edge[1] >= 0 and edge[2] >= 0: # two vertices
[x1, y1, x2, y2] = clip_line(c.vertices[edge[1]][0], c.vertices[edge[1]][1], c.vertices[edge[2]][0], c.vertices[edge[2]][1], q['width'], q['height'])
ytemp = c.lines[edge[0]][2]/c.lines[edge[0]][1]
[x1, y1, x2, y2] = clip_line(xtemp, ytemp, c.vertices[edge[2]][0], c.vertices[edge[2]][1], q['width'], q['height'])
if x1 or x2 or y1 or y2:
- path = 'M %f,%f %f,%f' % (x1, y1, x2, y2)
- attribs = {'d': path, 'style': 'stroke:#000000'}
- inkex.etree.SubElement(pattern, inkex.addNS('path', 'svg'), attribs)
+ path += 'M %.3f,%.3f %.3f,%.3f ' % (x1, y1, x2, y2)
+
+ attribs = {'d': path, 'style': 'stroke:#000000'}
+ inkex.etree.SubElement(pattern, inkex.addNS('path', 'svg'), attribs)
# link selected object to pattern
obj = self.selected[self.options.ids[0]]