summaryrefslogtreecommitdiff
path: root/automatarc-global.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <pgesang@ix.urz.uni-heidelberg.de>2010-08-15 20:14:01 +0200
committerPhilipp Gesang <pgesang@ix.urz.uni-heidelberg.de>2010-08-15 20:14:01 +0200
commit665d59554d270d8a56a43a2007981463581a055d (patch)
treeec707d41ee3545c3af51cee3b81dd98a933c1f75 /automatarc-global.lua
parent2e2ea4b49f9f3101b4e09b77cd33fefc93c9c3cf (diff)
downloadautomata-backgrounds-665d59554d270d8a56a43a2007981463581a055d.tar.gz
restructured directory layout and renamed most files.
Diffstat (limited to 'automatarc-global.lua')
-rw-r--r--automatarc-global.lua61
1 files changed, 0 insertions, 61 deletions
diff --git a/automatarc-global.lua b/automatarc-global.lua
deleted file mode 100644
index 95225d9..0000000
--- a/automatarc-global.lua
+++ /dev/null
@@ -1,61 +0,0 @@
---
---------------------------------------------------------------------------------
--- FILE: automatarc-global.lua
--- USAGE: with ConTeXt
--- DESCRIPTION: default settings for the automaton module
--- AUTHOR: Philipp Gesang (Phg), <megas.kapaneus@gmail.com>
--- VERSION: 1.0
--- CREATED: 13/08/10 10:35:46 CEST
---------------------------------------------------------------------------------
---
-
-if not mplife then return 1 end
-
-mplife.setup.global = {}
-
-do
- local c = {}
-
- c.file = "examples/sships.gol"
- c.rule = gol.parse_rule("B3/S23") -- default Conway
- --c.init = gol.parse_file(c.file)
- c.last = c.init -- for successive mode
-
- c.aspect = 3/4 -- actually 1/(x/y), for eca mode
-
- c.extendx = 0
- c.extendy = 0
-
- c.pensize = .1
- c.color = { r = .6, g = .6, b = .8 }
- c.opacity = 1/3
- c.fade = true
- c.gestalt = "unitsquare" -- try "unitcircle"
-
- c.firstframe = 1
- c.frames = 5
-
- c.preamble = [[
-\setupcolors[state=start]
-\setupbackgrounds[state=start]
-\setuppapersize[S6][S6]
-
-\setuppagenumbering[state=stop,location=]
-
-\defineoverlay[back][\ctxlua{mplife.successive()}]
-
-\setupbackgrounds [page] [background=back]
-]]
- c.before_frame = [[
-\startMPcode
-pickup pencircle xyscaled (.25*]] .. c.pensize .. [[pt, ]] .. c.pensize .. [[pt) rotated 45;
-]]
- c.after_frame = [[
-currentpicture := currentpicture xysized (\the\paperwidth, \the\paperheight);
-\stopMPcode
-]]
-
- mplife.setup.global = c
-end
-
-return mplife.setup.global