SVG plotter: Use round line joins
This commit is contained in:
parent
97cd9f79fd
commit
4e973976db
|
@ -178,6 +178,7 @@ class SVGPlotter(Plotter):
|
||||||
self.context = cairo.Context(self.surface)
|
self.context = cairo.Context(self.surface)
|
||||||
self.context.scale(dpi / 25.4, dpi / 25.4)
|
self.context.scale(dpi / 25.4, dpi / 25.4)
|
||||||
self.context.set_line_cap(cairo.LINE_CAP_ROUND)
|
self.context.set_line_cap(cairo.LINE_CAP_ROUND)
|
||||||
|
self.context.set_line_join(cairo.LINE_JOIN_ROUND)
|
||||||
|
|
||||||
super().__init__(paper, line_width, colour)
|
super().__init__(paper, line_width, colour)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue