From: Michael Orlitzky Date: Mon, 29 Aug 2011 23:01:21 +0000 (-0400) Subject: Add the ScaleFactor module and type, allowing us to scale (x,y,z) independently. X-Git-Tag: 0.0.1~206 X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=da61c2f5593476df49d05db0ee48bdc06ec3fa91;hp=fcdbcc6c67790a5a003fdad28685a943a5cd76ce;p=spline3.git Add the ScaleFactor module and type, allowing us to scale (x,y,z) independently. --- diff --git a/src/ScaleFactor.hs b/src/ScaleFactor.hs new file mode 100644 index 0000000..4af2056 --- /dev/null +++ b/src/ScaleFactor.hs @@ -0,0 +1,6 @@ +module ScaleFactor +where + +type ScaleFactor = (Int, Int, Int) + +--instance Integral ScaleFactor where