summaryrefslogtreecommitdiff
path: root/qml/python/transformations.py
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2014-08-24 20:37:19 +0200
committerSébastien Dailly <sebastien@chimrod.com>2014-08-24 20:37:19 +0200
commit1625e093e32b5bb292dfbb479b29bc1b98187df3 (patch)
tree32faee58668d2edb492e653e459c07f4d7a01504 /qml/python/transformations.py
parent6c2cc134abf3f32d1d6ec172c6201f8d990c88ab (diff)
Placement correction
Diffstat (limited to 'qml/python/transformations.py')
-rw-r--r--qml/python/transformations.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/qml/python/transformations.py b/qml/python/transformations.py
index 380c30c..adf0395 100644
--- a/qml/python/transformations.py
+++ b/qml/python/transformations.py
@@ -72,10 +72,10 @@ class Rotation(object):
""" Apply the transformations on the sides.
"""
return {
- "TOP": self.board.side["RIGHT"],
- "LEFT": self.board.side["TOP"],
- "RIGHT": self.board.side["BOTTOM"],
- "BOTTOM":self.board.side["LEFT"]
+ "BOTTOM": self.board.side["RIGHT"],
+ "RIGHT": self.board.side["TOP"],
+ "LEFT": self.board.side["BOTTOM"],
+ "TOP":self.board.side["LEFT"]
}
class Symmetry(object):