aboutsummaryrefslogtreecommitdiff
path: root/share/library/Passive/capacitor.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/library/Passive/capacitor.lua')
-rw-r--r--share/library/Passive/capacitor.lua34
1 files changed, 27 insertions, 7 deletions
diff --git a/share/library/Passive/capacitor.lua b/share/library/Passive/capacitor.lua
index c6abc28..02cf0ce 100644
--- a/share/library/Passive/capacitor.lua
+++ b/share/library/Passive/capacitor.lua
@@ -5,10 +5,17 @@ local names =
cs = "Kondenzátor"
}
+local names_polar =
+{
+ en = "Polarized capacitor",
+ cs = "Polarizovaný kondenzátor"
+}
+
-- Render area in base units (X1, Y1, X2, Y2)
-local area = {-2, -1, 2, 1}
+local area = {-2, -1, 2, 1}
+local area_polar = {-2, -1.5, 2, 1}
--- Terminals
+-- Terminal points
local terminals = {{-2, 0}, {2, 0}}
-- Rendering
@@ -16,23 +23,36 @@ local render = function (cr)
-- The vertical lines
cr.move_to (-0.2, -1)
cr.line_to (-0.2, 1)
- cr.stroke ()
cr.move_to (0.2, -1)
cr.line_to (0.2, 1)
- cr.stroke ()
- -- The contacts
+ -- The terminals
cr.move_to (-2, 0)
cr.line_to (-0.2, 0)
- cr.stroke ()
cr.move_to (0.2, 0)
cr.line_to (2, 0)
+
+ cr.stroke ()
+end
+
+local render_polar = function (cr)
+ render (cr)
+
+ 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.stroke ()
end
-- Register the symbol
-logdiag.register ("Capacitor", names, area, terminals, render)
+logdiag.register ("Capacitor",
+ names, area, terminals, render)
+logdiag.register ("CapacitorPolarized",
+ names_polar, area_polar, terminals, render_polar)