From 00641f16c889093b32b8e97a6050817f6fe43780 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 3 Nov 2023 00:18:41 -0400 Subject: added weird symmetries (and some more puzzles) --- ext/wittle_generator/Panel.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'ext/wittle_generator/Panel.h') 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 { enum Symmetry { // NOTE - Not all of these are valid symmetries for certain // puzzles - None, - Horizontal, - Vertical, - Rotational, - RotateLeft, - RotateRight, - FlipXY, - FlipNegXY, - ParallelH, - ParallelV, - ParallelHFlip, - ParallelVFlip, - PillarParallel, - PillarHorizontal, - PillarVertical, - PillarRotational + None = 0, + Horizontal = 1, + Vertical = 2, + Rotational = 3, + RotateLeft = 4, + RotateRight = 5, + FlipXY = 6, + FlipNegXY = 7, + ParallelH = 8, + ParallelV = 9, + ParallelHFlip = 10, + ParallelVFlip = 11, + PillarParallel = 12, + PillarHorizontal = 13, + PillarVertical = 14, + PillarRotational = 15, }; Symmetry symmetry; -- cgit 1.4.1