From c60df0e75e63f488d94fd744ad70df8124dc7724 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 21 Aug 2021 17:12:29 -0400 Subject: Souped up the UI --- Source/Randomizer2Core.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 Source/Randomizer2Core.h (limited to 'Source/Randomizer2Core.h') diff --git a/Source/Randomizer2Core.h b/Source/Randomizer2Core.h deleted file mode 100644 index df98de8..0000000 --- a/Source/Randomizer2Core.h +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -class Randomizer2Core { -public: - // CAUTION: These do not actually cut edges, they just returns a list of suggested cuts. - static std::vector CutEdges(const Puzzle& p, size_t numEdges); - static std::vector CutInsideEdges(const Puzzle& p, size_t numEdges); - static std::vector CutSymmetricalEdgePairs(const Puzzle& p, size_t numEdges); - -private: - static std::vector CutEdgesInternal(const Puzzle& p, int xMin, int xMax, int yMin, int yMax, size_t numEdges); - static void DebugColorGrid(const std::vector>& colorGrid); - static void FloodFill(const Puzzle& p, std::vector>& colorGrid, int color, int x, int y); - static void FloodFillOutside(const Puzzle& p, std::vector>& colorGrid, int x, int y); - static std::tuple>, int> CreateColorGrid(const Puzzle& p); -}; - -- cgit 1.4.1