/inkscape/share/extensions/ |
H A D | export_gimp_palette.py | 20 import simplestyle namespace 38 styles=simplestyle.parseStyle(sa) 44 if simplestyle.isColor(col): 45 c=simplestyle.parseColor(col) 46 colors['%3i %3i %3i ' % (c[0],c[1],c[2])]=simplestyle.formatColoria(c).upper()
|
H A D | handles.py | 19 import inkex, simplepath, simplestyle namespace 50 attribs = {'style':simplestyle.formatStyle(s),'d':simplepath.formatPath(a)}
|
H A D | rtree.py | 20 import inkex, simplestyle, pturtle, random namespace 69 attribs = {'d':t.getPath(),'style':simplestyle.formatStyle(s)}
|
H A D | markers_strokepaint.py | 25 import simplestyle namespace 81 style = simplestyle.parseStyle(node.get('style')) 149 cstyle = simplestyle.parseStyle(child.get('style')) 158 child.set('style',simplestyle.formatStyle(cstyle)) 159 node.set('style',simplestyle.formatStyle(style))
|
H A D | dots.py | 19 import inkex, simplestyle, simplepath, math namespace 86 style = simplestyle.formatStyle({ 'stroke': 'none', 'fill': '#000' }) 117 new.set('style', simplestyle.formatStyle(s))
|
H A D | convert2dashes.py | 27 import simplestyle namespace 58 style = simplestyle.parseStyle(node.get('style')) 96 node.set('style', simplestyle.formatStyle(style))
|
H A D | image_attributes.py | 29 import simplestyle namespace 87 node_style = simplestyle.parseStyle(node.get('style')) 101 node.set('style', simplestyle.formatStyle(node_style))
|
H A D | generate_voronoi.py | 27 import simplestyle, simpletransform namespace 182 attribs = {'d': path, 'style': simplestyle.formatStyle(patternstyle)} 189 style = simplestyle.parseStyle(obj.attrib['style']) 191 obj.attrib['style'] = simplestyle.formatStyle(style) 196 style = simplestyle.parseStyle(node.attrib['style']) 198 node.attrib['style'] = simplestyle.formatStyle(style)
|
H A D | hershey.py | 24 import simplestyle namespace 36 text_attribs = {'style':simplestyle.formatStyle(style), 'd':pathString, 'transform':trans}
|
H A D | render_gear_rack.py | 21 import simplestyle namespace 100 'style': simplestyle.formatStyle(style),
|
H A D | synfig_prepare.py | 27 import simplepath, simplestyle, simpletransform namespace 275 style = simplestyle.parseStyle(path_node.get("style", "")) 344 group.set("style", simplestyle.formatStyle(style_group)) 346 fill.set("style", simplestyle.formatStyle(style_fill)) 347 stroke.set("style", simplestyle.formatStyle(style_stroke)) 393 this_style = simplestyle.parseStyle(node.get("style", "")) 423 node.set("style", simplestyle.formatStyle(remaining_style)) 439 node.set("style", simplestyle.formatStyle(this_style))
|
H A D | split.py | 57 from simplestyle import parseStyle 123 from simplestyle import parseStyle 169 import simplestyle namespace 170 fontsize = simplestyle.parseStyle(word.get("style"))["font-size"]
|
H A D | pathmodifier.py | 39 import simplestyle namespace 112 style = simplestyle.parseStyle(node.get('style') or "") 113 refstyle=simplestyle.parseStyle(refnode.get('style') or "") 115 newnode.set('style',simplestyle.formatStyle(style)) 198 newstyle = simplestyle.parseStyle(node.get('style') or "") 201 childstyle = simplestyle.parseStyle(child.get('style') or "") 207 newNode.set('style',simplestyle.formatStyle(newstyle))
|
H A D | print_win32_vector.py | 34 import simplestyle namespace 61 style = simplestyle.parseStyle(style) 64 rgb = simplestyle.parseColor(style['stroke']) 70 fill = simplestyle.parseColor(style['fill']) 155 style = simplestyle.parseStyle(style)
|
H A D | lindenmayer.py | 19 import inkex, simplestyle, pturtle, random namespace 113 attribs = {'style':simplestyle.formatStyle(s),'d':self.iterate()}
|
H A D | spirograph.py | 19 import inkex, simplestyle, math namespace 76 new.set('style', simplestyle.formatStyle(s))
|
H A D | grid_polar.py | 24 import simplestyle, sys namespace 30 circ_attribs = {'style':simplestyle.formatStyle(style), 38 line_attribs = {'style':simplestyle.formatStyle(style), 48 label_attribs = {'style':simplestyle.formatStyle(style),
|
H A D | coloreffect.py | 21 import sys, copy, simplestyle, inkex namespace 99 if simplestyle.isColor(col): 100 c=simplestyle.parseColor(col)
|
H A D | render_gears.py | 22 import simplestyle, sys namespace 170 gear_attribs = {'style':simplestyle.formatStyle(style), 'd':path} 173 center_attribs = {'style':simplestyle.formatStyle(style),
|
H A D | replace_font.py | 35 import simplestyle namespace 101 return simplestyle.parseStyle(node.attrib['style']) 107 node.attrib['style'] = simplestyle.formatStyle(style)
|
H A D | printing_marks.py | 31 import simplestyle namespace 100 line_attribs = {'style': simplestyle.formatStyle(style), 110 line_attribs = {'style': simplestyle.formatStyle(style), 119 circle_attribs = {'style':simplestyle.formatStyle(style), 135 regmark_attribs = {'style': simplestyle.formatStyle(style), 159 regmark_attribs = {'style':simplestyle.formatStyle(style),
|
H A D | svgcalendar.py | 38 import simplestyle namespace 258 txt_atts = {'style': simplestyle.formatStyle(self.style_month), 280 txt_atts = {'style': simplestyle.formatStyle(self.style_day_name), 348 txt_atts = {'style': simplestyle.formatStyle(style), 359 txt_atts = {'style': simplestyle.formatStyle(style), 387 txt_atts = {'style': simplestyle.formatStyle(self.style_year),
|
H A D | tar_layers.py | 34 import simplestyle namespace
|
H A D | voronoi2svg.py | 35 import simplestyle namespace 329 rect.set('style',simplestyle.formatStyle(linestyle)) 352 path.set('style',simplestyle.formatStyle(linestyle)) 378 path.set('style',simplestyle.formatStyle(facestyle))
|
/inkscape/share/extensions/test/ |
H A D | simplestyle.test.py | 6 from simplestyle import parseColor, parseStyle
|