/inkscape/share/extensions/ |
H A D | flatten.py | 19 import inkex, cubicsuperpath, simplepath, cspsubdiv namespace 32 p = cubicsuperpath.parsePath(d)
|
H A D | whirl.py | 19 import math, inkex, cubicsuperpath namespace 42 p = cubicsuperpath.parsePath(d) 56 node.set('d',cubicsuperpath.formatPath(p))
|
H A D | extrude.py | 23 import cubicsuperpath namespace 46 pts = [cubicsuperpath.parsePath(paths[i].get('d'))
|
H A D | radiusrand.py | 19 import random, math, inkex, cubicsuperpath namespace 64 p = cubicsuperpath.parsePath(d) 78 node.set('d',cubicsuperpath.formatPath(p))
|
H A D | rubberstretch.py | 22 import inkex, cubicsuperpath, bezmisc, pathmodifier namespace
|
H A D | convert2dashes.py | 25 import cubicsuperpath namespace 65 p = cubicsuperpath.parsePath(node.get('d')) 94 node.set('d',cubicsuperpath.formatPath(new))
|
H A D | summersnight.py | 23 import cubicsuperpath namespace 57 trafo = cubicsuperpath.parsePath(trafo.get('d')) 110 p = cubicsuperpath.parsePath(d) 119 path.set('d',cubicsuperpath.formatPath(p))
|
H A D | addnodes.py | 26 import cubicsuperpath, simplestyle, copy, math, re, bezmisc namespace 85 p = cubicsuperpath.parsePath(node.get('d')) 109 node.set('d',cubicsuperpath.formatPath(new))
|
H A D | pathalongpath.py | 40 import cubicsuperpath namespace 69 This function receives a component of a 'cubicsuperpath' and returns two things: 239 p0 = cubicsuperpath.parsePath(d) 245 self.curSekeleton=cubicsuperpath.parsePath(skelnode.get('d')) 289 node.set('d', cubicsuperpath.formatPath(newp))
|
H A D | print_win32_vector.py | 36 import cubicsuperpath namespace 77 p = cubicsuperpath.parsePath(d)
|
H A D | hpgl_encoder.py | 28 import cubicsuperpath namespace 236 path = cubicsuperpath.parsePath(path)
|
H A D | simpletransform.py | 23 import inkex, cubicsuperpath, bezmisc, simplestyle namespace 140 p = cubicsuperpath.parsePath(d) 142 node.set('d', cubicsuperpath.formatPath(p)) 241 p = cubicsuperpath.parsePath(d)
|
H A D | interp.py | 19 import inkex, cubicsuperpath, simplestyle, copy, math, bezmisc, simpletransform, pathmodifier namespace 140 paths[id] = cubicsuperpath.parsePath(node.get('d')) 327 attribs = {'style':simplestyle.formatStyle(basestyle),'d':cubicsuperpath.formatPath(interp)}
|
H A D | pathmodifier.py | 37 import cubicsuperpath namespace 205 newp += cubicsuperpath.parsePath(childAsPath.get('d')) 206 newNode.set('d',cubicsuperpath.formatPath(newp)) 221 #--TODO: make sure cubicsuperpath supports A and Q commands... 261 p = cubicsuperpath.parsePath(d) 265 node.set('d',cubicsuperpath.formatPath(p)) 306 p = cubicsuperpath.parsePath(d) 312 node.set('d',cubicsuperpath.formatPath(p))
|
H A D | pathscatter.py | 42 import cubicsuperpath namespace 83 This function receives a component of a 'cubicsuperpath' and returns two things: 257 self.curSekeleton=cubicsuperpath.parsePath(skelnode.get('d'))
|
H A D | dxf_outlines.py | 39 import cubicsuperpath namespace 208 p = cubicsuperpath.parsePath(d) 215 p = cubicsuperpath.parsePath(d) 222 p = cubicsuperpath.parsePath(d) 228 p = cubicsuperpath.parsePath(d) 235 p = cubicsuperpath.parsePath(d)
|
H A D | measure.py | 41 import cubicsuperpath namespace 226 p = cubicsuperpath.parsePath(node.get('d'))
|
H A D | perspective.py | 33 import cubicsuperpath namespace 65 path = cubicsuperpath.parsePath(envelope.get('d')) 134 p = cubicsuperpath.parsePath(d) 143 path.set('d',cubicsuperpath.formatPath(p))
|
H A D | synfig_output.py | 30 import cubicsuperpath namespace 893 # borrows code from cubicsuperpath.py 953 arcp = cubicsuperpath.ArcToPath(last[:], params[:])
|
H A D | gcodetools.py | 48 based on cubicsuperpath.py (C) 2005 Aaron Spike, aaron@ekips.org 87 import cubicsuperpath namespace 1515 attributes = { 'd': cubicsuperpath.formatPath(csp), 2125 #inkex.etree.SubElement( options.doc_root, inkex.addNS('path','svg'), {"d": cubicsuperpath.formatPath(unclipped_offset), "style":"fill:none;stroke:#0f0;"} ) 3337 csp = self.apply_transforms( path, cubicsuperpath.parsePath(path.get("d")) ) 3415 path.set("d", cubicsuperpath.formatPath( self.apply_transforms(path,res,True) )) 3433 csp = cubicsuperpath.parsePath(path.get("d")) 4276 self.in_out_reference_points.append( self.apply_transforms(j,cubicsuperpath.parsePath(j.get("d")))[0][0][1] ) 4329 point[0] = self.apply_transforms(node,cubicsuperpath.parsePath(node.get("d")))[0][0][1] 4341 point[0] = self.apply_transforms(node,cubicsuperpath [all...] |