aboutsummaryrefslogtreecommitdiff
path: root/share/library/Misc/switch.lua
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2011-02-07 10:52:02 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2011-02-07 13:53:49 +0100
commit00d9072c5b1a998c25b574e9694da32be3fb8222 (patch)
tree63df42fb89035249f3b98d7d1b44dd0fd0591398 /share/library/Misc/switch.lua
parent1277b6eaaffc08076f9d9440693f201fb61072e3 (diff)
downloadlogdiag-00d9072c5b1a998c25b574e9694da32be3fb8222.tar.gz
logdiag-00d9072c5b1a998c25b574e9694da32be3fb8222.tar.xz
logdiag-00d9072c5b1a998c25b574e9694da32be3fb8222.zip
Add some miscellaneous symbols.
Diffstat (limited to 'share/library/Misc/switch.lua')
-rw-r--r--share/library/Misc/switch.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/share/library/Misc/switch.lua b/share/library/Misc/switch.lua
new file mode 100644
index 0000000..9d59fdf
--- /dev/null
+++ b/share/library/Misc/switch.lua
@@ -0,0 +1,33 @@
+-- Symbol name
+names =
+{
+ en = "Switch",
+ cs = "Spínač"
+}
+
+-- Render area in base units (X1, Y1, X2, Y2)
+area = {-2, -1.5, 2, 0}
+
+-- Terminals
+terminals = {{-2, 0}, {2, 0}}
+
+-- Rendering
+render_normal = function (cr)
+ -- The switch contact
+ cr.move_to (1.3, -1.3)
+ cr.line_to (-1, 0)
+
+ -- The contacts
+ cr.move_to (-2, 0)
+ cr.line_to (-1, 0)
+
+ cr.move_to (1, 0)
+ cr.line_to (2, 0)
+
+ cr.stroke ()
+end
+
+-- Register the symbol
+logdiag.register ("Switch", names, area, terminals, render_normal)
+
+