diff options
Diffstat (limited to 'share/library/Passive/capacitor.lua')
-rw-r--r-- | share/library/Passive/capacitor.lua | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/share/library/Passive/capacitor.lua b/share/library/Passive/capacitor.lua index 121b01d..bd8c408 100644 --- a/share/library/Passive/capacitor.lua +++ b/share/library/Passive/capacitor.lua @@ -17,20 +17,20 @@ local terminals = {{-2, 0}, {2, 0}} -- Rendering local render = function (cr) -- The vertical lines - cr.move_to (-0.2, -1) - cr.line_to (-0.2, 1) + cr:move_to (-0.2, -1) + cr:line_to (-0.2, 1) - cr.move_to (0.2, -1) - cr.line_to (0.2, 1) + cr:move_to (0.2, -1) + cr:line_to (0.2, 1) -- The terminals - cr.move_to (-2, 0) - cr.line_to (-0.2, 0) + cr:move_to (-2, 0) + cr:line_to (-0.2, 0) - cr.move_to (0.2, 0) - cr.line_to (2, 0) + cr:move_to (0.2, 0) + cr:line_to (2, 0) - cr.stroke () + cr:stroke () end -- Register the symbol |