94 lines
2.8 KiB
Python
94 lines
2.8 KiB
Python
import inkex
|
|
import simplestyle
|
|
from lxml import etree
|
|
|
|
def _format_1st(command, is_absolute):
|
|
"""Small helper function for the Path class"""
|
|
return command.upper() if is_absolute else command.lower()
|
|
|
|
default_style = str(inkex.Style(
|
|
{'stroke': '#000000',
|
|
'stroke-width': '0.1',
|
|
'fill': 'none'
|
|
}))
|
|
|
|
red_style = str(inkex.Style(
|
|
{'stroke': '#FF0000',
|
|
'stroke-width': '0.1',
|
|
'fill': 'none'
|
|
}))
|
|
|
|
green_style = str(inkex.Style(
|
|
{'stroke': '#00FF00',
|
|
'stroke-width': '0.1',
|
|
'fill': 'none'
|
|
}))
|
|
|
|
blue_style = str(inkex.Style(
|
|
{'stroke': '#0000FF',
|
|
'stroke-width': '0.1',
|
|
'fill': 'none'
|
|
}))
|
|
|
|
def layer(parent, layer_name):
|
|
layer = etree.SubElement(parent, 'g')
|
|
layer.set(inkex.addNS('label', 'inkscape'), layer_name)
|
|
layer.set(inkex.addNS('groupmode', 'inkscape'), 'layer')
|
|
return layer
|
|
|
|
def group(parent):
|
|
return etree.SubElement(parent, 'g')
|
|
|
|
def text(parent, coordinate, txt, style=default_style):
|
|
text = etree.Element(inkex.addNS('text', 'svg'))
|
|
text.text = txt
|
|
text.set('x', str(coordinate.x))
|
|
text.set('y', str(coordinate.y))
|
|
style = {'text-align': 'center', 'text-anchor': 'middle'}
|
|
text.set('style', str(inkex.Style(style)))
|
|
parent.append(text)
|
|
|
|
class Path(object):
|
|
"""
|
|
Generates SVG paths
|
|
"""
|
|
def __init__(self):
|
|
self.nodes = []
|
|
|
|
def move_to(self, coord, absolute=False):
|
|
self.nodes.append("{0} {1} {2}".format(_format_1st('m', absolute), coord.x, coord.y))
|
|
|
|
def line_to(self, coord, absolute=False):
|
|
self.nodes.append("{0} {1} {2}".format(_format_1st('l', absolute), coord.x, coord.y))
|
|
|
|
def h_line_to(self, dist, absolute=False):
|
|
self.nodes.append("{0} {1}".format(_format_1st('h', absolute), dist))
|
|
|
|
def v_line_to(self, dist, absolute=False):
|
|
self.nodes.append("{0} {1}".format(_format_1st('v', absolute), dist))
|
|
|
|
def arc_to(self, radius, coord, rotation=0, pos_sweep=True, large_arc=False, absolute=False):
|
|
self.nodes.append("{0} {1} {2} {3} {4} {5} {6} {7}"
|
|
.format(_format_1st('a', absolute), radius.x, radius.y, rotation,
|
|
1 if large_arc else 0, 1 if pos_sweep else 0, coord.x, coord.y))
|
|
|
|
def close(self):
|
|
self.nodes.append('z')
|
|
|
|
def path(self, parent, style=default_style):
|
|
attribs = {'style': style,
|
|
'd': ' '.join(self.nodes)}
|
|
etree.SubElement(parent, inkex.addNS('path', 'svg'), attribs)
|
|
|
|
def curve(self, parent, segments, style, closed=True):
|
|
pathStr = ' '.join(segments)
|
|
if closed:
|
|
pathStr += ' z'
|
|
attributes = {
|
|
'style': style,
|
|
'd': pathStr}
|
|
etree.SubElement(parent, inkex.addNS('path', 'svg'), attributes)
|
|
|
|
def remove_last(self):
|
|
self.nodes.pop()
|