Skip to content
Snippets Groups Projects
Commit 819ecd6c authored by Paul-Walcher's avatar Paul-Walcher
Browse files

expanded CuboidScroll

parent 5fc83e6b
No related branches found
No related tags found
No related merge requests found
...@@ -344,6 +344,14 @@ theory RectangleType = ...@@ -344,6 +344,14 @@ theory RectangleType =
rectangleType : type ❘ # Rectangle ❙ rectangleType : type ❘ # Rectangle ❙
rectangleCons : point ⟶ point ⟶ point ⟶ Rectangle ❘ # RectangleCons 1 2 3 ❙ rectangleCons : point ⟶ point ⟶ point ⟶ Rectangle ❘ # RectangleCons 1 2 3 ❙
getA : Rectangle ⟶ point ❘ # getA 1 ❙
getB : Rectangle ⟶ point ❘ # getB 1 ❙
getC : Rectangle ⟶ point ❘ # getC 1 ❙
getAAxiom : {A, B, C} ⊦ ( ( getA ( RectangleCons A B C) ) ≐ A ) ❘ role Simplify❙
getBAxiom : {A, B, C} ⊦ ( ( getB ( RectangleCons A B C) ) ≐ B ) ❘ role Simplify❙
getCAxiom : {A, B, C} ⊦ ( ( getC ( RectangleCons A B C) ) ≐ C ) ❘ role Simplify❙
theory CuboidType = theory CuboidType =
......
...@@ -20,6 +20,16 @@ theory CuboidScroll = ...@@ -20,6 +20,16 @@ theory CuboidScroll =
❘ meta ?MetaAnnotations?description "The point above the centerpoint of the rectangle" ❘ meta ?MetaAnnotations?description "The point above the centerpoint of the rectangle"
rTBA: ⊦ (∠ T,(getB R),(getA R)) ≐ 90.0
❘ meta ?MetaAnnotations?label "rTBA"
❘ meta ?MetaAnnotations?description "A right angle between TBA, where B is the point enclosed by T A"
rTBC: ⊦ (∠ T,(getB R),(getC R)) ≐ 90.0
❘ meta ?MetaAnnotations?label "rTBC"
❘ meta ?MetaAnnotations?description "A right angle between TBC, where B is the point enclosed by T C"
theory Solution = theory Solution =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment