/inkscape/share/extensions/ |
H A D | handles.py | 19 import inkex, simplepath, simplestyle namespace 25 p = simplepath.parsePath(node.get('d')) 50 attribs = {'style':simplestyle.formatStyle(s),'d':simplepath.formatPath(a)}
|
H A D | cubicsuperpath.py | 22 import simplepath namespace 100 def CubicSuperPath(simplepath): 106 for s in simplepath: 163 return CubicSuperPath(simplepath.parsePath(d)) 166 return simplepath.formatPath(unCubicSuperPath(p))
|
H A D | flatten.py | 19 import inkex, cubicsuperpath, simplepath, cspsubdiv namespace 43 node.set('d',simplepath.formatPath(np))
|
H A D | fractalize.py | 19 import random, math, inkex, simplepath namespace 61 p = simplepath.parsePath(d) 80 node.set('d', simplepath.formatPath(a))
|
H A D | motion.py | 19 import math, inkex, simplestyle, simplepath, bezmisc namespace 40 defs = simplepath.pathdefs[cmd] 56 face = inkex.etree.SubElement(self.facegroup,inkex.addNS('path','svg'),{'d':simplepath.formatPath(a)}) 75 p = simplepath.parsePath(node.get('d'))
|
H A D | param_curves.py | 30 import inkex, simplepath, simplestyle namespace 220 newpath.set('d', simplepath.formatPath(
|
H A D | straightseg.py | 19 import math, inkex, simplepath, sys namespace 42 p = simplepath.parsePath(d) 66 node.set('d',simplepath.formatPath(p))
|
H A D | svgfont2layers.py | 22 import simplepath namespace 47 pathdata = simplepath.parsePath(d) 48 simplepath.scalePath(pathdata, 1,-1) 49 simplepath.translatePath(pathdata, 0, int(emsize) - int(baseline)) 50 return simplepath.formatPath(pathdata)
|
H A D | extrude.py | 21 import simplepath namespace 72 ele.set('d', simplepath.formatPath(line)) 90 ele.set('d', simplepath.formatPath(line))
|
H A D | funcplot.py | 34 import simplepath namespace 275 newpath.set('d', simplepath.formatPath(
|
H A D | dots.py | 19 import inkex, simplestyle, simplepath, math namespace 88 p = simplepath.parsePath(node.get('d'))
|
H A D | edge3d.py | 19 import inkex, simplepath, sys, copy namespace 78 p = simplepath.parsePath(d) 107 nn.set('d',simplepath.formatPath(result))
|
H A D | layers2svgfont.py | 22 import simplepath namespace 51 pathdata = simplepath.parsePath(d) 52 simplepath.scalePath(pathdata, 1,-1) 53 simplepath.translatePath(pathdata, 0, int(emsize) - int(baseline)) 54 return simplepath.formatPath(pathdata)
|
H A D | summersnight.py | 25 import simplepath namespace
|
H A D | voronoi2svg.py | 36 import simplepath namespace 351 path.set('d',simplepath.formatPath(cmds)) 377 path.set('d',simplepath.formatPath(cmds))
|
H A D | draw_from_triangle.py | 39 import simplepath namespace 135 p = simplepath.parsePath(node.get('d')) #parse the path 141 defs = simplepath.pathdefs[cmd]
|
H A D | pixelsnap.py | 68 import simplestyle, simpletransform, simplepath namespace 287 path = simplepath.parsePath(elem.attrib.get(original_d, elem.attrib['d'])) 313 path = simplepath.parsePath(elem.attrib.get(original_d, elem.attrib['d'])) 337 path = simplepath.formatPath(path) 345 path = simplepath.parsePath(elem.attrib.get(original_d, elem.attrib['d'])) 357 path = simplepath.formatPath(path) 365 path = simplepath.parsePath(elem.attrib.get(original_d, elem.attrib['d'])) 426 path = simplepath.formatPath(path)
|
H A D | synfig_prepare.py | 27 import simplepath, simplestyle, simpletransform namespace 222 path = simplepath.parsePath(path_d) 266 path_d = simplepath.formatPath(path)
|
H A D | perspective.py | 32 import simplepath namespace
|
H A D | render_alphabetsoup.py | 35 import simplepath namespace 60 return simplepath.parsePath(d), width, height # Currently we only support a single path 101 defs = simplepath.pathdefs[cmd] 108 defs = simplepath.pathdefs[cmd] 314 simplepath.translatePath(currimg, dx, dy) 323 simplepath.translatePath(image, -bbox[0], 0) 324 simplepath.scalePath(image, zoom/units, zoom/units) 472 simplepath.translatePath(thisimage, position, 0) 534 new.set('d', simplepath.formatPath(image))
|
H A D | synfig_output.py | 29 import simplepath, simplestyle, simpletransform namespace 881 path = simplepath.parsePath(path_d)
|
H A D | gcodetools.py | 86 import simplepath namespace
|