summaryrefslogtreecommitdiffstats
path: root/examples/lisp-esque
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lisp-esque')
-rw-r--r--examples/lisp-esque36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/lisp-esque b/examples/lisp-esque
index f08c576..84d0129 100644
--- a/examples/lisp-esque
+++ b/examples/lisp-esque
@@ -507,3 +507,39 @@ def _standardise(mods, args):
'''
pass
+# Map function names to functions
+functions = { 'monitors' : _monitors
+ , 'crtc' : _crtc
+ , 'size' : _size
+ , 'edid' : _edid
+ , 'coordinates' : _coordinates
+ , 'parse' : _parse
+ , 'read' : _read
+ , 'spawn' : _spawn
+ , 'include' : _include
+ , 'source' : _source
+ , 'eval' : _eval
+ , 'timepoints' : _timepoints
+ , 'points' : _points
+ , 'dayness' : _dayness
+ , 'method' : _method
+ , 'transfrom' : _transfrom
+ , 'negative' : _negative
+ , 'invert' : _invert
+ , 'temperature' : _temperature
+ , 'compose' : _compose
+ , 'current' : _current
+ , 'brightness' : _brightness
+ , 'contrast' : _contrast
+ , 'resolution' : _resolution
+ , 'gamma' : _gamma
+ , '\'gamma' : _pgamma
+ , 'clip' : _clip
+ , 'sigmoid' : _sigmoid
+ , 'limits' : _limits
+ , 'linearise' : _linearise
+ , 'icc' : _icc
+ , 'manipulate' : _manipulate
+ , 'standardise' : _standardise
+ }
+