diff --git a/source/DefaultSituationSpace.mmt b/source/DefaultSituationSpace.mmt
index 254e098d25eff4d5765d43eeecc480a8e88b64b6..7be9ac6c1131d1814a2c2a54970aae8b88b9980e 100644
--- a/source/DefaultSituationSpace.mmt
+++ b/source/DefaultSituationSpace.mmt
@@ -30,9 +30,5 @@ theory DefaultSituationSpace =
         include ?TriangleScroll ❙
         include ?SimpleCircleScroll ❙
         include ?SphereScroll ❙
-        
-
-
-
     ❚
 ❚
diff --git a/source/MetaTheories.mmt b/source/MetaTheories.mmt
index 2a9f201a42df1be44f7829f1ca9d627b79fbab51..aedd54df9a87c83b3f8ff6e5307b8430c9efba08 100644
--- a/source/MetaTheories.mmt
+++ b/source/MetaTheories.mmt
@@ -318,6 +318,44 @@ theory FrameITCylinder =
 
  ❚
 
+theory CircleType =
+  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
+  include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
+  include ?FrameITBasics ❙
+
+  circleType : type ❘ # Circle ❙
+  circleCons : point ⟶ point ⟶ point  ⟶ Circle  ❘ # CircleCons 1 2 3 ❙
+❚
+
+theory SphereType =
+  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
+  include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
+  include ?FrameITBasics ❙
+
+  sphereType : type ❘ # Sphere ❙
+  sphereCons : point ⟶ point  ⟶ Sphere  ❘ # SphereCons 1 2 ❙
+  
+❚
+
+theory RectangleType =
+  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
+  include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
+  include ?FrameITBasics ❙
+
+  rectangleType : type ❘ # Rectangle ❙
+  rectangleCons : point ⟶ point ⟶ point  ⟶ Rectangle  ❘ # RectangleCons 1 2 3 ❙
+❚
+
+theory CuboidType =
+  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
+  include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
+  include ?FrameITBasics ❙
+  include ?RectangleType ❙
+
+  cuboidType : type ❘ # Cuboid ❙
+  cuboidCons : Rectangle ⟶ point ⟶ Cuboid ❘ # CuboidCons 1 2 ❙
+❚
+
 theory FrameITTheories =
   include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
   include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
@@ -326,32 +364,25 @@ theory FrameITTheories =
   include ?FrameITCircle ❙
   include ?FrameITCone ❙
   include ?FrameITCylinder ❙
+  include ?CircleType ❙
+  include ?SphereType ❙
+  include ?RectangleType ❙
+  include ?CuboidType ❙
 
-      makeCircleOf3EdgePoints : point ⟶ point ⟶ point ⟶ circle  ❘ = [p1,p2,p3 ] mkCirc3D (  Ppara p1 (p2 p-p p1) ( p3 p-p p1) ) ( midTriangle3D ( Δ p1 p2 p3 ) ) ( d- ( midTriangle3D ( Δ p1 p2 p3 ) ) p1 )   ❘ # mkCirc3P3D 1 2 3 ❙
-
-   ❚
+  makeCircleOf3EdgePoints : point ⟶ point ⟶ point ⟶ circle  ❘ = [p1,p2,p3 ] mkCirc3D (  Ppara p1 (p2 p-p p1) ( p3 p-p p1) ) ( midTriangle3D ( Δ p1 p2 p3 ) ) ( d- ( midTriangle3D ( Δ p1 p2 p3 ) ) p1 )   ❘ # mkCirc3P3D 1 2 3 ❙
+❚
 
 /T The meta theory to use for situation theories, scroll problem, and scroll solution theories ❚
 theory FrameworldMeta =
   include ?MetaAnnotations ❙
   include ?FrameITTheories ❙
-  include ?RectangleType ❙
-  include ?CuboidType ❙
-  include ?CircleType ❙
-  include ?SphereType ❙
-
- // include ☞http://mathhub.info/MitM/core/arithmetics?RealArithmetics ❙
 
+  // include ☞http://mathhub.info/MitM/core/arithmetics?RealArithmetics ❙
+  // include ☞http://gl.mathhub.info/MMT/LFX/Sigma?LFSigma ❙
+  // include ☞http://mathhub.info/MitM/Foundation?Strings ❙
 
- // include ☞http://gl.mathhub.info/MMT/LFX/Sigma?LFSigma ❙
-
-//  include ☞http://mathhub.info/MitM/Foundation?Strings ❙
   include ☞http://mathhub.info/MitM/Foundation?Math ❙
 
-
-//  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
-//  include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
-
-
-
+  // include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
+  // include ☞http://mathhub.info/MitM/core/geometry?Planes ❙
 ❚
diff --git a/source/Scrolls/CircleType.mmt b/source/Scrolls/CircleType.mmt
deleted file mode 100644
index 2fda840962d384422cc2441ddfa2d5137a83f425..0000000000000000000000000000000000000000
--- a/source/Scrolls/CircleType.mmt
+++ /dev/null
@@ -1,12 +0,0 @@
-namespace http://mathhub.info/FrameIT/frameworld ❚
-fixmeta ?FrameworldMeta ❚
-
-theory CircleType =
-  
-  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
-  include ?FrameITBasics ❙
-
-  circleType : type ❘ # Circle ❙
-  circleCons : point ⟶ point ⟶ point  ⟶ Circle  ❘ # CircleCons 1 2 3 ❙
-  
-❚
\ No newline at end of file
diff --git a/source/Scrolls/CuboidType.mmt b/source/Scrolls/CuboidType.mmt
deleted file mode 100644
index 8f5f066b1b4adfe4a7fb0ba31a330a2fdff36639..0000000000000000000000000000000000000000
--- a/source/Scrolls/CuboidType.mmt
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace http://mathhub.info/FrameIT/frameworld ❚
-fixmeta ur:?LF ❚
-
-theory CuboidType =
-    include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
-    include ?FrameITBasics ❙
-    include ?RectangleType ❙
-
-    cuboidType : type ❘ # Cuboid ❙
-    cuboidCons : Rectangle ⟶ point ⟶ Cuboid ❘ # CuboidCons 1 2 ❙
-❚
\ No newline at end of file
diff --git a/source/Scrolls/SphereScroll.mmt b/source/Scrolls/SphereScroll.mmt
index ceb193e14a2c9364152bf2eea490a31acf0c9b17..858a46937eb771a933a638f02b13bdac3247641d 100644
--- a/source/Scrolls/SphereScroll.mmt
+++ b/source/Scrolls/SphereScroll.mmt
@@ -1,17 +1,6 @@
 namespace http://mathhub.info/FrameIT/frameworld ❚
 fixmeta ?FrameworldMeta ❚
 
-theory SphereType =
-  
-  include ☞http://mathhub.info/MitM/core/geometry?3DGeometry ❙
-  include ?FrameITBasics ❙
-
-  sphereType : type ❘ # Sphere ❙
-  sphereCons : point ⟶ point  ⟶ Sphere  ❘ # SphereCons 1 2 ❙
-  
-❚
-
-
 theory SphereScroll =
     meta ?MetaAnnotations?problemTheory  ?SphereScroll/Problem ❙
     meta ?MetaAnnotations?solutionTheory ?SphereScroll/Solution ❙