import Test.QuickCheck (Arbitrary(..), Gen, Positive(..))
-import Cube (Cube(Cube))
+import Cube (Cube(Cube), find_containing_tetrahedra)
import FunctionValues
import Misc (flatten)
import Point (Point)
+import Tetrahedron (polynomial)
import ThreeDimensional (contains_point)
where
all_cubes = flatten $ cubes g
contains_our_point = flip contains_point p
+
+
+
+zoom :: Grid -> Int -> [[[Double]]]
+zoom g scale_factor
+ | fvs == [[[]]] = []
+ | head fvs == [[]] = []
+ | otherwise =
+ [[[f p | i <- [0..scaled_zsize],
+ let i' = scale_dimension i,
+ let j' = scale_dimension j,
+ let k' = scale_dimension k,
+ let p = (i', j', k') :: Point,
+ let c = (find_containing_cubes g p) !! 0,
+ let t = (find_containing_tetrahedra c p) !! 0,
+ let f = polynomial t]
+ | j <- [0..scaled_ysize]]
+ | k <- [0..scaled_xsize]]
+ where
+ scale_dimension :: Int -> Double
+ scale_dimension x = (fromIntegral x) / (fromIntegral scale_factor)
+
+ fvs = function_values g
+ scaled_zsize = ((length fvs) - 1) * scale_factor
+ scaled_ysize = (length (head fvs) - 1) * scale_factor
+ scaled_xsize = (length (head $ head fvs) - 1) * scale_factor