From da61c2f5593476df49d05db0ee48bdc06ec3fa91 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 29 Aug 2011 19:01:21 -0400 Subject: [PATCH] Add the ScaleFactor module and type, allowing us to scale (x,y,z) independently. --- src/ScaleFactor.hs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/ScaleFactor.hs 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 -- 2.43.2