aboutsummaryrefslogtreecommitdiff
path: root/share/library/Misc
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2011-02-09 14:18:22 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2011-02-09 14:18:22 +0100
commit39fb4bb56f5c5644aba0603c01cbad112b66273c (patch)
tree6c9965d5b412c3bf9c442a0694e823a863dfe6e2 /share/library/Misc
parentab3e2733ce12e38d53324da96281cf9e12a11fc5 (diff)
downloadlogdiag-39fb4bb56f5c5644aba0603c01cbad112b66273c.tar.gz
logdiag-39fb4bb56f5c5644aba0603c01cbad112b66273c.tar.xz
logdiag-39fb4bb56f5c5644aba0603c01cbad112b66273c.zip
Make all variables in Lua scripts local.
Diffstat (limited to 'share/library/Misc')
-rw-r--r--share/library/Misc/ground.lua8
-rw-r--r--share/library/Misc/lamp.lua8
-rw-r--r--share/library/Misc/power-source.lua8
-rw-r--r--share/library/Misc/switch.lua8
4 files changed, 16 insertions, 16 deletions
diff --git a/share/library/Misc/ground.lua b/share/library/Misc/ground.lua
index fdcf593..0c36240 100644
--- a/share/library/Misc/ground.lua
+++ b/share/library/Misc/ground.lua
@@ -1,18 +1,18 @@
-- Symbol name
-names =
+local names =
{
en = "Ground",
cs = "Zem"
}
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-1, -1, 1, 2}
+local area = {-1, -1, 1, 2}
-- Terminals
-terminals = {{0, -1}}
+local terminals = {{0, -1}}
-- Rendering
-render = function (cr)
+local render = function (cr)
-- The vertical line
cr.move_to (0, -1)
cr.line_to (0, 0.5)
diff --git a/share/library/Misc/lamp.lua b/share/library/Misc/lamp.lua
index b662cec..9ecf9ea 100644
--- a/share/library/Misc/lamp.lua
+++ b/share/library/Misc/lamp.lua
@@ -1,18 +1,18 @@
-- Symbol name
-names =
+local names =
{
en = "Lamp",
cs = "Světelný zdroj"
}
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-2, -1, 2, 1}
+local area = {-2, -1, 2, 1}
-- Terminals
-terminals = {{-2, 0}, {2, 0}}
+local terminals = {{-2, 0}, {2, 0}}
-- Rendering
-render = function (cr)
+local render = function (cr)
-- The circle
cr.save ()
diff --git a/share/library/Misc/power-source.lua b/share/library/Misc/power-source.lua
index 8fd98bb..00a8498 100644
--- a/share/library/Misc/power-source.lua
+++ b/share/library/Misc/power-source.lua
@@ -1,18 +1,18 @@
-- Symbol name
-names =
+local names =
{
en = "Power source",
cs = "Zdroj napětí"
}
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-1, -2, 1, 2}
+local area = {-1, -2, 1, 2}
-- Terminals
-terminals = {{-1, 0}, {1, 0}}
+local terminals = {{-1, 0}, {1, 0}}
-- Rendering
-render = function (cr)
+local render = function (cr)
-- The vertical lines
cr.move_to (-0.2, -1)
cr.line_to (-0.2, 1)
diff --git a/share/library/Misc/switch.lua b/share/library/Misc/switch.lua
index 9d59fdf..c4d031e 100644
--- a/share/library/Misc/switch.lua
+++ b/share/library/Misc/switch.lua
@@ -1,18 +1,18 @@
-- Symbol name
-names =
+local names =
{
en = "Switch",
cs = "Spínač"
}
-- Render area in base units (X1, Y1, X2, Y2)
-area = {-2, -1.5, 2, 0}
+local area = {-2, -1.5, 2, 0}
-- Terminals
-terminals = {{-2, 0}, {2, 0}}
+local terminals = {{-2, 0}, {2, 0}}
-- Rendering
-render_normal = function (cr)
+local render_normal = function (cr)
-- The switch contact
cr.move_to (1.3, -1.3)
cr.line_to (-1, 0)