Commit AFTER playing around with poking/vector sizing a little

This commit is contained in:
2024-10-01 12:32:23 +01:00
parent 8348c1234c
commit 6438da0037
12 changed files with 301 additions and 1889 deletions
+2
View File
@@ -29,6 +29,7 @@ data Layer
deriving (Eq, Ord, Enum, Bounded, Show, Read) --Generic, Flat)
numLayers :: Int
{-# INLINE numLayers #-}
numLayers = length [minBound :: Layer .. maxBound]
data ShadNum
@@ -39,6 +40,7 @@ data ShadNum
deriving (Eq, Ord, Enum, Bounded, Show, Read) --Generic, Flat)
numShads :: Int
{-# INLINE numShads #-}
numShads = length [minBound :: ShadNum .. maxBound]
type Picture = [Verx]