]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Add the "zoom" function.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 22 Aug 2011 19:33:28 +0000 (15:33 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 22 Aug 2011 19:33:28 +0000 (15:33 -0400)
src/Grid.hs

index efa63418947c308e7bed8c25619dadbc8d9d0a8e..63b2cfa122bc6ba5bbb9d496b77f1a00466eebb6 100644 (file)
@@ -6,10 +6,11 @@ where
 
 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)
 
 
@@ -81,3 +82,29 @@ find_containing_cubes g p =
     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