diff options
Diffstat (limited to 'share/library/Passive')
-rw-r--r-- | share/library/Passive/capacitor.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/share/library/Passive/capacitor.lua b/share/library/Passive/capacitor.lua index 02cf0ce..8b43ad8 100644 --- a/share/library/Passive/capacitor.lua +++ b/share/library/Passive/capacitor.lua @@ -40,11 +40,12 @@ end local render_polar = function (cr) render (cr) - cr.move_to (0.6, -1) - cr.line_to (1.4, -1) + -- The plus sign + cr.move_to (-0.6, -1) + cr.line_to (-1.4, -1) - cr.move_to (1, -1.4) - cr.line_to (1, -0.6) + cr.move_to (-1, -1.4) + cr.line_to (-1, -0.6) cr.stroke () end |