SVG plotter: Use round line joins

This commit is contained in:
fruchti 2022-12-18 12:40:11 +01:00
parent 97cd9f79fd
commit 4e973976db

View file

@ -178,6 +178,7 @@ class SVGPlotter(Plotter):
self.context = cairo.Context(self.surface)
self.context.scale(dpi / 25.4, dpi / 25.4)
self.context.set_line_cap(cairo.LINE_CAP_ROUND)
self.context.set_line_join(cairo.LINE_JOIN_ROUND)
super().__init__(paper, line_width, colour)