summaryrefslogtreecommitdiff
path: root/gerbonara/graphic_primitives.py
diff options
context:
space:
mode:
authorjaseg <git@jaseg.de>2023-04-06 16:41:10 +0200
committerjaseg <git@jaseg.de>2023-04-06 16:41:10 +0200
commit48d4aeee947a913bf949ab60f09754089129835f (patch)
tree320b0cb9d49727fe8569a06d374374ad6905e64e /gerbonara/graphic_primitives.py
parent6378a91f3614c5258c0037eb4eb1f28d160ed346 (diff)
downloadgerbonara-48d4aeee947a913bf949ab60f09754089129835f.tar.gz
gerbonara-48d4aeee947a913bf949ab60f09754089129835f.tar.bz2
gerbonara-48d4aeee947a913bf949ab60f09754089129835f.zip
Make SVG export even smaller
Diffstat (limited to 'gerbonara/graphic_primitives.py')
-rw-r--r--gerbonara/graphic_primitives.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gerbonara/graphic_primitives.py b/gerbonara/graphic_primitives.py
index 13d626d..13854e1 100644
--- a/gerbonara/graphic_primitives.py
+++ b/gerbonara/graphic_primitives.py
@@ -189,7 +189,7 @@ class Line(GraphicPrimitive):
color = fg if self.polarity_dark else bg
width = f'{self.width:.6}' if not math.isclose(self.width, 0) else '0.01mm'
return tag('path', d=f'M {float(self.x1):.6} {float(self.y1):.6} L {float(self.x2):.6} {float(self.y2):.6}',
- fill='none', stroke=color, stroke_width=str(width), stroke_linecap='round')
+ fill='none', stroke=color, stroke_width=str(width))
@dataclass(frozen=True)
class Arc(GraphicPrimitive):
@@ -241,7 +241,7 @@ class Arc(GraphicPrimitive):
arc = svg_arc((self.x1, self.y1), (self.x2, self.y2), (self.cx, self.cy), self.clockwise)
width = f'{self.width:.6}' if not math.isclose(self.width, 0) else '0.01mm'
return tag('path', d=f'M {float(self.x1):.6} {float(self.y1):.6} {arc}',
- fill='none', stroke=color, stroke_width=width, stroke_linecap='round')
+ fill='none', stroke=color, stroke_width=width)
@dataclass(frozen=True)
class Rectangle(GraphicPrimitive):