]> gitweb.michael.orlitzky.com - spline3.git/blob - src/ScaleFactor.hs
Add the ScaleFactor module and type, allowing us to scale (x,y,z) independently.
[spline3.git] / src / ScaleFactor.hs
1 module ScaleFactor
2 where
3
4 type ScaleFactor = (Int, Int, Int)
5
6 --instance Integral ScaleFactor where