]> gitweb.michael.orlitzky.com - spline3.git/blobdiff - src/Everything.hs
Add the current Main module, which works alrightish.
[spline3.git] / src / Everything.hs
index 1c8d738ff2f6293451037457c823e629c53f5422..096d18f29edc8448def23d3f7d1da94d75e636f3 100644 (file)
@@ -1,15 +1,29 @@
 -- | 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,
+  module Values
+)
 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)
+import Values