aboutsummaryrefslogtreecommitdiff
path: root/layouts/ZigzagLayout.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2011-02-01 23:14:12 -0500
committerGravatar rcoh <rcoh@mit.edu>2011-02-01 23:14:12 -0500
commit5a97e7548b0ec44f0d61a724903748197e69df7c (patch)
tree7bb6b8ea7e488949eeb16ae18b0ad2230f1f7c9b /layouts/ZigzagLayout.py
parent082e4b0c53123dd377da148541f7d98516716862 (diff)
parent482a94fd48627153b923931d6ff21ebf57fad6f7 (diff)
Merge branch 'osc' of github.com:rcoh/SmootLight into osc
Diffstat (limited to 'layouts/ZigzagLayout.py')
-rw-r--r--layouts/ZigzagLayout.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/layouts/ZigzagLayout.py b/layouts/ZigzagLayout.py
index 221571c..3fc2ea1 100644
--- a/layouts/ZigzagLayout.py
+++ b/layouts/ZigzagLayout.py
@@ -10,6 +10,15 @@ import pdb
# |
# X-X-X-X etc.
class ZigzagLayout(PixelAssembler):
+ """ZigZagLayout is a slightly more complex layout class that makes a zig-Zag Led Pattern
+ Inheriting classes must specify zigLength, the length in lights of a of a zig
+ and zig Axis, the direction of the long X axis (X or Y).
+ EG: zig length = 4, zig Axis = X would give:
+ X-X-X-X
+ |
+ X-X-X-X
+ |
+ X-X-X-X etc.
def initLayout(self):
if not 'zigLength' in self.argDict:
raise Exception('zigLength must be defined in argDict')