aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2011-02-07 10:56:39 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2011-02-07 13:53:55 +0100
commit847945f0519892b2dbadcfcbff44b629c4c18209 (patch)
tree830579957cb118b781762511bcdaa433abab04b3
parent00d9072c5b1a998c25b574e9694da32be3fb8222 (diff)
downloadlogdiag-847945f0519892b2dbadcfcbff44b629c4c18209.tar.gz
logdiag-847945f0519892b2dbadcfcbff44b629c4c18209.tar.xz
logdiag-847945f0519892b2dbadcfcbff44b629c4c18209.zip
Split the inductor symbol in two, remove pads.
-rw-r--r--share/library/Passive/inductor.lua35
1 files changed, 22 insertions, 13 deletions
diff --git a/share/library/Passive/inductor.lua b/share/library/Passive/inductor.lua
index ccdc352..91ba8c2 100644
--- a/share/library/Passive/inductor.lua
+++ b/share/library/Passive/inductor.lua
@@ -1,34 +1,43 @@
--- Symbol name
-names =
+-- Symbol names
+names_normal =
{
en = "Inductor",
cs = "Cívka"
}
+names_core =
+{
+ en = "Inductor with magnetic core",
+ cs = "Cívka s magnetickým jádrem"
+}
+
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-3, -1, 3, 0}
+area = {-2, -1, 2, 0}
-- Terminals
-terminals = {{-3, 0}, {3, 0}}
+terminals = {{-2, 0}, {2, 0}}
-- Rendering
-render = function (cr)
- -- The left contact
- cr.move_to (-3, 0)
- cr.line_to (-2, 0)
-
+render_normal = function (cr)
-- The arcs
cr.arc (-1.5, 0, 0.5, math.pi, 0)
cr.arc (-0.5, 0, 0.5, math.pi, 0)
cr.arc (0.5, 0, 0.5, math.pi, 0)
cr.arc (1.5, 0, 0.5, math.pi, 0)
+ cr.stroke ()
+end
+
+render_core = function (cr)
+ render_normal (cr)
- -- The right contact
- cr.line_to (3, 0)
+ -- The core
+ cr.move_to (-2, -1)
+ cr.line_to (2, -1)
cr.stroke ()
end
--- Register the symbol
-logdiag.register ("Inductor", names, area, terminals, render)
+-- Register the symbols
+logdiag.register ("Inductor", names_normal, area, terminals, render_normal)
+logdiag.register ("InductorWithCore", names_core, area, terminals, render_core)