about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Panel.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-03 00:18:41 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-03 00:18:41 -0400
commit00641f16c889093b32b8e97a6050817f6fe43780 (patch)
tree33d0279af22ac028472d5eda0b535b58757dbc05 /ext/wittle_generator/Panel.h
parent13dfac7905faac21ea98b08a0948104df8411d42 (diff)
downloadwittle-00641f16c889093b32b8e97a6050817f6fe43780.tar.gz
wittle-00641f16c889093b32b8e97a6050817f6fe43780.tar.bz2
wittle-00641f16c889093b32b8e97a6050817f6fe43780.zip
added weird symmetries (and some more puzzles)
Diffstat (limited to 'ext/wittle_generator/Panel.h')
-rw-r--r--ext/wittle_generator/Panel.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/ext/wittle_generator/Panel.h b/ext/wittle_generator/Panel.h index d152370..3bc23c9 100644 --- a/ext/wittle_generator/Panel.h +++ b/ext/wittle_generator/Panel.h
@@ -188,22 +188,22 @@ class Panel {
188 188
189 enum Symmetry { // NOTE - Not all of these are valid symmetries for certain 189 enum Symmetry { // NOTE - Not all of these are valid symmetries for certain
190 // puzzles 190 // puzzles
191 None, 191 None = 0,
192 Horizontal, 192 Horizontal = 1,
193 Vertical, 193 Vertical = 2,
194 Rotational, 194 Rotational = 3,
195 RotateLeft, 195 RotateLeft = 4,
196 RotateRight, 196 RotateRight = 5,
197 FlipXY, 197 FlipXY = 6,
198 FlipNegXY, 198 FlipNegXY = 7,
199 ParallelH, 199 ParallelH = 8,
200 ParallelV, 200 ParallelV = 9,
201 ParallelHFlip, 201 ParallelHFlip = 10,
202 ParallelVFlip, 202 ParallelVFlip = 11,
203 PillarParallel, 203 PillarParallel = 12,
204 PillarHorizontal, 204 PillarHorizontal = 13,
205 PillarVertical, 205 PillarVertical = 14,
206 PillarRotational 206 PillarRotational = 15,
207 }; 207 };
208 Symmetry symmetry; 208 Symmetry symmetry;
209 209