From 7499f92811cadbd5928dab8d092014bc72aa2b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Tue, 2 Nov 2021 10:35:20 +0100 Subject: Close symbol paths where appropriate Removes some ugliness in PDF exports, stemming from line thickness. --- share/library/Logical/or.lua | 1 + share/library/Misc/switch.lua | 3 +-- share/library/Passive/diode.lua | 2 +- share/library/Passive/resistor.lua | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/share/library/Logical/or.lua b/share/library/Logical/or.lua index 18aabab..27390a9 100644 --- a/share/library/Logical/or.lua +++ b/share/library/Logical/or.lua @@ -23,6 +23,7 @@ local render = function (cr) cr:curve_to (3, 0, 2, 2, 0, 2) cr:line_to (-2, 2) cr:curve_to (-1, 1, -1, -1, -2, -2) + cr:close_path () cr:stroke () -- The terminals diff --git a/share/library/Misc/switch.lua b/share/library/Misc/switch.lua index 2d95b6b..9901de6 100644 --- a/share/library/Misc/switch.lua +++ b/share/library/Misc/switch.lua @@ -21,8 +21,7 @@ local render = function (cr) cr:line_to (-1, 0) -- The terminals - cr:move_to (-2, 0) - cr:line_to (-1, 0) + cr:line_to (-2, 0) cr:move_to (1, 0) cr:line_to (2, 0) diff --git a/share/library/Passive/diode.lua b/share/library/Passive/diode.lua index 46bfa99..12ad8ed 100644 --- a/share/library/Passive/diode.lua +++ b/share/library/Passive/diode.lua @@ -48,7 +48,7 @@ local render = function (cr) cr:move_to (-1, -1) cr:line_to (1, 0) cr:line_to (-1, 1) - cr:line_to (-1, -1) + cr:close_path () -- The vertical line cr:move_to (1, 1) diff --git a/share/library/Passive/resistor.lua b/share/library/Passive/resistor.lua index 7c0b222..bad7a72 100644 --- a/share/library/Passive/resistor.lua +++ b/share/library/Passive/resistor.lua @@ -42,7 +42,7 @@ local render = function (cr) cr:line_to (1.5, -0.5) cr:line_to (1.5, 0.5) cr:line_to (-1.5, 0.5) - cr:line_to (-1.5, -0.5) + cr:close_path () -- The terminals cr:move_to (-2, 0) -- cgit v1.2.3