]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Add the ScaleFactor module and type, allowing us to scale (x,y,z) independently.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 29 Aug 2011 23:01:21 +0000 (19:01 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 29 Aug 2011 23:01:21 +0000 (19:01 -0400)
src/ScaleFactor.hs [new file with mode: 0644]

diff --git a/src/ScaleFactor.hs b/src/ScaleFactor.hs
new file mode 100644 (file)
index 0000000..4af2056
--- /dev/null
@@ -0,0 +1,6 @@
+module ScaleFactor
+where
+
+type ScaleFactor = (Int, Int, Int)
+
+--instance Integral ScaleFactor where