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 â™