]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Re-export the modules in Everything.hs.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 10 Jul 2011 16:49:02 +0000 (12:49 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 10 Jul 2011 16:49:02 +0000 (12:49 -0400)
src/Everything.hs

index 1c8d738ff2f6293451037457c823e629c53f5422..f1f5677aba8d8f733da372a16159639cef1440d9 100644 (file)
@@ -1,15 +1,27 @@
 -- | This module just imports the others. Useful in GHCi sessions.
-module Everything
+module Everything (
+  module Cardinal,
+  module Comparisons,
+  module Cube,
+  module Examples,
+  module Face,
+  module FunctionValues,
+  module Grid,
+  module Misc,
+  module Point,
+  module RealFunction,
+  module Tetrahedron
+)
 where
 
 import Cardinal
 import Comparisons
-import Cube
+import Cube hiding (h)
 import Examples
-import Face
+import Face hiding (v0,v1,v2,v3)
 import FunctionValues
 import Grid
 import Misc
 import Point
 import RealFunction
-import Tetrahedron
+import Tetrahedron hiding (fv)