├── .github └── workflows │ └── build.yml ├── .gitignore ├── .idea ├── .gitignore └── .name ├── LICENSE ├── README-German.md ├── README.md ├── assets ├── linux │ └── Java-Geometry-Expert.png ├── mac │ └── Java-Geometry-Expert.icns └── windows │ └── Java-Geometry-Expert.ico ├── attic ├── .idea │ ├── .gitignore │ ├── ant.xml │ ├── libraries │ │ ├── Java_Geometry_Expert.xml │ │ ├── convert.xml │ │ ├── convert1.xml │ │ ├── convert10.xml │ │ ├── convert11.xml │ │ ├── convert2.xml │ │ ├── convert3.xml │ │ ├── convert4.xml │ │ ├── convert5.xml │ │ ├── convert6.xml │ │ ├── convert7.xml │ │ ├── convert8.xml │ │ ├── convert9.xml │ │ └── jgex.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── Copyright ├── Java-Geometry-Expert.iml ├── MANIFEST.MF ├── build.xml ├── convert.jar ├── deb │ ├── control │ │ └── control │ └── jgex ├── gettext │ ├── 1-extract-keys.sh │ ├── 2-merge-keys.sh │ ├── 2.5-merge-old-translations.sh │ ├── 3-translate.sh │ ├── 4-create-resources.bat │ ├── 4-create-resources.sh │ ├── package-version.sh │ └── settings.conf ├── jgex.xml ├── language │ ├── Chinese.lan │ ├── English.lan │ ├── German.lan │ ├── Italian.lan │ ├── Persian.lan │ ├── Persian2.lan │ ├── Portuguese.lan │ └── Serbian.lan ├── nbproject │ ├── build-impl.xml │ ├── genfiles.properties │ ├── private │ │ ├── private.properties │ │ └── private.xml │ ├── project.properties │ └── project.xml └── update.jar ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── snapcraft.yaml └── src ├── index.html ├── main ├── java │ ├── UI │ │ ├── BLeveledButtonUI.java │ │ ├── BLeveledButtonUIX.java │ │ ├── BasicOutlookButtonUI.java │ │ ├── BlueishButtonUI.java │ │ ├── ButtonBorder.java │ │ ├── DropShadowBorder.java │ │ ├── EntityButtonUI.java │ │ ├── GBevelBorder.java │ │ ├── GBevelUI.java │ │ ├── GifDecoder.java │ │ ├── GifEncoder.java │ │ ├── LZWEncoder.java │ │ ├── NeuQuant.java │ │ ├── OvalBorder.java │ │ ├── SolidBorder.java │ │ └── package-info.java │ ├── gprover │ │ ├── ACir.java │ │ ├── AngSt.java │ │ ├── AngTn.java │ │ ├── AngTr.java │ │ ├── AngleT.java │ │ ├── Angles.java │ │ ├── Area.java │ │ ├── AuxPt.java │ │ ├── CClass.java │ │ ├── CNdg.java │ │ ├── CST.java │ │ ├── CSegs.java │ │ ├── Cm.java │ │ ├── Cond.java │ │ ├── CongSeg.java │ │ ├── Cons.java │ │ ├── DTerm.java │ │ ├── ElTerm.java │ │ ├── Elim.java │ │ ├── Full.java │ │ ├── GDD.java │ │ ├── GDDAux.java │ │ ├── GDDBase.java │ │ ├── GDDBc.java │ │ ├── GTerm.java │ │ ├── Gib.java │ │ ├── Gr.java │ │ ├── GrTerm.java │ │ ├── Incenter.java │ │ ├── LLine.java │ │ ├── LList.java │ │ ├── Main.java │ │ ├── Main2.java │ │ ├── MathBase.java │ │ ├── MidPt.java │ │ ├── Mnde.java │ │ ├── NdgCs.java │ │ ├── PLine.java │ │ ├── Poly.java │ │ ├── Polygon.java │ │ ├── ProPoint.java │ │ ├── Prover.java │ │ ├── RatioSeg.java │ │ ├── Rule.java │ │ ├── Rules.java │ │ ├── STris.java │ │ ├── SimTri.java │ │ ├── TLine.java │ │ ├── Var.java │ │ ├── XTerm.java │ │ └── package-info.java │ ├── maths │ │ ├── BigFraction.java │ │ ├── BigSquareRoot.java │ │ ├── CharSet.java │ │ ├── Param.java │ │ ├── PolyBasic.java │ │ ├── TDono.java │ │ ├── TMono.java │ │ ├── TPoly.java │ │ └── package-info.java │ ├── pdf │ │ ├── BoundingBox.java │ │ ├── PDFAnnot.java │ │ ├── PDFBorder.java │ │ ├── PDFCatalog.java │ │ ├── PDFDocument.java │ │ ├── PDFFont.java │ │ ├── PDFGraphics.java │ │ ├── PDFImage.java │ │ ├── PDFInfo.java │ │ ├── PDFJob.java │ │ ├── PDFObject.java │ │ ├── PDFOutline.java │ │ ├── PDFOutput.java │ │ ├── PDFPage.java │ │ ├── PDFPageList.java │ │ ├── PDFPrinterJob.java │ │ ├── PDFStream.java │ │ ├── PDFStringHelper.java │ │ ├── PDFXref.java │ │ ├── StringTooLongException.java │ │ └── package-info.java │ └── wprover │ │ ├── AboutDialog.java │ │ ├── AllSolutionDialog.java │ │ ├── AnimateC.java │ │ ├── AnimatePanel.java │ │ ├── AttrToCondDialog.java │ │ ├── CAngle.java │ │ ├── CArrow.java │ │ ├── CBoolean.java │ │ ├── CClass.java │ │ ├── CCoBox.java │ │ ├── CDialogProve.java │ │ ├── CDistance.java │ │ ├── CLine.java │ │ ├── CMisc.java │ │ ├── CPoint.java │ │ ├── CPolygon.java │ │ ├── CProperty.java │ │ ├── CProveBarPanel.java │ │ ├── CProveField.java │ │ ├── CProveText.java │ │ ├── CStyleDialog.java │ │ ├── CTMark.java │ │ ├── CText.java │ │ ├── CTextValue.java │ │ ├── CTrace.java │ │ ├── Cedmark.java │ │ ├── Circle.java │ │ ├── ColorButtonPanel.java │ │ ├── ColorComboRender.java │ │ ├── ColorMenu.java │ │ ├── ConcDialog.java │ │ ├── ConcPanel.java │ │ ├── Constraint.java │ │ ├── DPanel.java │ │ ├── DiagramUpdater.java │ │ ├── DialogProperty.java │ │ ├── DialogPsProperty.java │ │ ├── DrawBase.java │ │ ├── DrawData.java │ │ ├── DrawProcess.java │ │ ├── DrawTextProcess.java │ │ ├── DrawType.java │ │ ├── FactFinderDialog.java │ │ ├── FloatableToolBar.java │ │ ├── GExpert.java │ │ ├── GIFOptionDialog.java │ │ ├── GIFProcessDialog.java │ │ ├── GProver.java │ │ ├── GRule.java │ │ ├── GeoPoly.java │ │ ├── GgbCircle.java │ │ ├── GgbLine.java │ │ ├── GgbMidpoint.java │ │ ├── GgbPoint.java │ │ ├── GgbSegment.java │ │ ├── HelpMode.java │ │ ├── ImageTimer.java │ │ ├── JAngleFlash.java │ │ ├── JAreaFlash.java │ │ ├── JArrowFlash.java │ │ ├── JBaseDialog.java │ │ ├── JCgFlash.java │ │ ├── JCirFlash.java │ │ ├── JExPanel.java │ │ ├── JFileFilter.java │ │ ├── JFlash.java │ │ ├── JLine.java │ │ ├── JLineFlash.java │ │ ├── JObjectFlash.java │ │ ├── JPointEnlargeFlash.java │ │ ├── JPolygonFlash.java │ │ ├── JPopExView.java │ │ ├── JRedoStepFlash.java │ │ ├── JSegmentMovingFlash.java │ │ ├── JTLineFlash.java │ │ ├── JTriFlash.java │ │ ├── Language.java │ │ ├── LeadVariableDialog.java │ │ ├── ListTree.java │ │ ├── MProveInputPanel.java │ │ ├── MProveTree.java │ │ ├── MiscDialog.java │ │ ├── NdgDialog.java │ │ ├── NumCheckDialog.java │ │ ├── PPDialog.java │ │ ├── PanelAlgebraic.java │ │ ├── PanelGB.java │ │ ├── PanelProve.java │ │ ├── PanelWu.java │ │ ├── Parser.java │ │ ├── RatioSelectDialog.java │ │ ├── RectChooser.java │ │ ├── RectangleSelectionDialog.java │ │ ├── RightClickPopMenu.java │ │ ├── RightTransformPopupMenu.java │ │ ├── RuleApplicationDialog.java │ │ ├── RuleDialog.java │ │ ├── RuleList.java │ │ ├── RuleListDialog.java │ │ ├── RunningDialog.java │ │ ├── SecondCounterDemo.java │ │ ├── SelectDialog.java │ │ ├── SpecificAngleDialog.java │ │ ├── TextFrame.java │ │ ├── TextValueEditor.java │ │ ├── TransformConfirmDialog.java │ │ ├── TreeCellOpaqueRender.java │ │ ├── UndoEditDialog.java │ │ ├── UndoStruct.java │ │ ├── VFontChooser.java │ │ ├── VcellRender.java │ │ ├── Version.java │ │ ├── WuTextPane.java │ │ └── package-info.java ├── po │ ├── de.po │ ├── fa.po │ ├── fr.po │ ├── he.po │ ├── hu.po │ ├── it.po │ ├── keys.pot │ ├── pl.po │ ├── pt.po │ ├── rs.po │ └── zh_CN.po └── resources │ ├── docs │ ├── examples │ │ ├── 1_TOP_TEN │ │ │ ├── 01_feuerbach.gex │ │ │ ├── 02_Pyth1.gex │ │ │ ├── 03_Pyth2.gex │ │ │ ├── 04_Pyth3.gex │ │ │ ├── 05_3altitudes.gex │ │ │ ├── 06_viviani.gex │ │ │ ├── 07_2altitude.gex │ │ │ ├── 08_9point.gex │ │ │ ├── 09_orth.gex │ │ │ └── 10_5cir.gex │ │ ├── 2_PWW │ │ │ ├── A003.gex │ │ │ ├── A004.gex │ │ │ ├── A005.gex │ │ │ ├── A006.gex │ │ │ ├── A013.gex │ │ │ ├── A015-ch.gex │ │ │ ├── A015.gex │ │ │ ├── A016.gex │ │ │ ├── A016_1.gex │ │ │ ├── A018.gex │ │ │ ├── A039-2.gex │ │ │ ├── A039-chou1.gex │ │ │ ├── A039Y1.gex │ │ │ ├── A039Y2.gex │ │ │ ├── B004.gex │ │ │ ├── B005.gex │ │ │ ├── B006.gex │ │ │ ├── B008.gex │ │ │ ├── B009.gex │ │ │ ├── B016-1.gex │ │ │ ├── B016.gex │ │ │ ├── B016x.gex │ │ │ ├── B022.gex │ │ │ ├── B022Y.gex │ │ │ ├── B029.gex │ │ │ ├── C004.gex │ │ │ ├── C017.gex │ │ │ ├── C027.gex │ │ │ ├── C030.gex │ │ │ ├── C030Y.gex │ │ │ ├── C030v.gex │ │ │ ├── C031.gex │ │ │ ├── C033.gex │ │ │ ├── C035.gex │ │ │ ├── C038.gex │ │ │ ├── C048.gex │ │ │ ├── C110.gex │ │ │ └── Fig1-5.gex │ │ ├── 3_JAR │ │ │ ├── 5cirdb.gex │ │ │ ├── JAR01 - new │ │ │ │ ├── 9point.gex │ │ │ │ ├── Thebaultxx.gex │ │ │ │ ├── ex2.gex │ │ │ │ ├── ex3.gex │ │ │ │ ├── ex4.gex │ │ │ │ ├── morley.gex │ │ │ │ ├── simson.gex │ │ │ │ └── sq.gex │ │ │ ├── JAR01 │ │ │ │ ├── fig02.gex │ │ │ │ ├── fig05.gex │ │ │ │ ├── fig05_1.gex │ │ │ │ ├── fig06.gex │ │ │ │ ├── fig06_1.gex │ │ │ │ ├── fig07.gex │ │ │ │ ├── fig08.gex │ │ │ │ ├── fig09.gex │ │ │ │ ├── fig10.gex │ │ │ │ ├── fig11.gex │ │ │ │ └── fig12.gex │ │ │ ├── JAR02-new │ │ │ │ ├── fig208.gex │ │ │ │ ├── fig209.gex │ │ │ │ ├── fig210.gex │ │ │ │ ├── fig211.gex │ │ │ │ ├── fig212.gex │ │ │ │ ├── fig214.gex │ │ │ │ ├── fig215.gex │ │ │ │ ├── fig216.gex │ │ │ │ └── fig217.gex │ │ │ ├── JAR02 │ │ │ │ ├── fig208 │ │ │ │ ├── fig209 │ │ │ │ ├── fig210 │ │ │ │ ├── fig211 │ │ │ │ ├── fig212 │ │ │ │ ├── fig213 │ │ │ │ ├── fig214 │ │ │ │ ├── fig215 │ │ │ │ ├── fig216 │ │ │ │ ├── fig217 │ │ │ │ └── fig218 │ │ │ ├── simson │ │ │ └── simson.gex │ │ ├── 4_PYTH │ │ │ ├── cmm-14.gex │ │ │ ├── notes.txt │ │ │ ├── proof-24.gex │ │ │ ├── proof_01.gex │ │ │ ├── proof_02.gex │ │ │ ├── proof_101.gex │ │ │ ├── proof_14.gex │ │ │ ├── proof_16.gex │ │ │ ├── proof_24(2).gex │ │ │ ├── proof_24.gex │ │ │ ├── proof_25.gex │ │ │ ├── proof_26.gex │ │ │ ├── proof_27.gex │ │ │ ├── proof_28.gex │ │ │ ├── proof_31.gex │ │ │ ├── proof_35.gex │ │ │ ├── proof_36.gex │ │ │ ├── proof_55.gex │ │ │ ├── proof_64.gex │ │ │ ├── proof_70.gex │ │ │ ├── proof_71.gex │ │ │ ├── proof_72Y.gex │ │ │ ├── pyth_JAdam.gex │ │ │ ├── pyth_cal.gex │ │ │ ├── pyth_dg.gex │ │ │ ├── pyth_ssh.gex │ │ │ ├── zzm-63(2).gex │ │ │ ├── zzm-63(3).gex │ │ │ └── zzm-63(4).gex │ │ ├── 5_MANUAL │ │ │ ├── 101.gex │ │ │ ├── 102.gex │ │ │ ├── 14-4.gex │ │ │ ├── 20-1.gex │ │ │ ├── 23-14.gex │ │ │ ├── 23-15.gex │ │ │ ├── 23-7.gex │ │ │ ├── 24-19.gex │ │ │ ├── 24-22.gex │ │ │ ├── 31-5.gex │ │ │ ├── 35-9.gex │ │ │ ├── 36-11.gex │ │ │ ├── 36-13.gex │ │ │ ├── 36-19.gex │ │ │ ├── 52-10.gex │ │ │ ├── 52-5.gex │ │ │ ├── 52-6.gex │ │ │ ├── 54-21.gex │ │ │ ├── 54-24.gex │ │ │ ├── 54-31.gex │ │ │ ├── 54-36.gex │ │ │ ├── 54-44.gex │ │ │ ├── 54-46.gex │ │ │ ├── 54-49.gex │ │ │ ├── 54-54.gex │ │ │ ├── 54-56.gex │ │ │ ├── 66-2.gex │ │ │ └── morley.gex │ │ ├── 6_GDD_FULL │ │ │ ├── 01-20 │ │ │ │ ├── 01.gex │ │ │ │ ├── 02.gex │ │ │ │ ├── 03.gex │ │ │ │ ├── 04.gex │ │ │ │ ├── 05.gex │ │ │ │ ├── 06.gex │ │ │ │ ├── 07.gex │ │ │ │ ├── 08.gex │ │ │ │ ├── 09.gex │ │ │ │ ├── 10.gex │ │ │ │ ├── 11.gex │ │ │ │ ├── 12.gex │ │ │ │ ├── 13.gex │ │ │ │ ├── 14.gex │ │ │ │ ├── 15.gex │ │ │ │ ├── 16.gex │ │ │ │ ├── 17.gex │ │ │ │ ├── 18.gex │ │ │ │ ├── 19.gex │ │ │ │ └── 20.gex │ │ │ ├── 21-40 │ │ │ │ ├── 22.gex │ │ │ │ ├── 23.gex │ │ │ │ ├── 24.gex │ │ │ │ ├── 26.gex │ │ │ │ ├── 27.gex │ │ │ │ ├── 28.gex │ │ │ │ ├── 29.gex │ │ │ │ ├── 30.gex │ │ │ │ ├── 31.gex │ │ │ │ ├── 32.gex │ │ │ │ ├── 33.gex │ │ │ │ ├── 34.gex │ │ │ │ ├── 35.gex │ │ │ │ ├── 36.gex │ │ │ │ ├── 37.gex │ │ │ │ ├── 38.gex │ │ │ │ ├── 39.gex │ │ │ │ └── 40.gex │ │ │ ├── 41-60 │ │ │ │ ├── 41.gex │ │ │ │ ├── 42.gex │ │ │ │ ├── 43.gex │ │ │ │ ├── 44.gex │ │ │ │ ├── 45.gex │ │ │ │ ├── 46.gex │ │ │ │ ├── 47.gex │ │ │ │ ├── 48.gex │ │ │ │ ├── 49.gex │ │ │ │ ├── 50.gex │ │ │ │ ├── 51.gex │ │ │ │ ├── 52.gex │ │ │ │ ├── 53.gex │ │ │ │ ├── 54.gex │ │ │ │ ├── 55.gex │ │ │ │ ├── 56.gex │ │ │ │ ├── 57.gex │ │ │ │ ├── 58.gex │ │ │ │ ├── 59.gex │ │ │ │ └── 60.gex │ │ │ ├── 61-80 │ │ │ │ ├── 61.gex │ │ │ │ ├── 62.gex │ │ │ │ ├── 63f.gex │ │ │ │ ├── 64.gex │ │ │ │ ├── 65.gex │ │ │ │ ├── 66.gex │ │ │ │ ├── 67.gex │ │ │ │ ├── 68.gex │ │ │ │ ├── 69.gex │ │ │ │ ├── 70.gex │ │ │ │ ├── 71.gex │ │ │ │ ├── 72.gex │ │ │ │ ├── 73.gex │ │ │ │ ├── 74.gex │ │ │ │ ├── 75y.gex │ │ │ │ ├── 76.gex │ │ │ │ ├── 77.gex │ │ │ │ ├── 78.gex │ │ │ │ ├── 79.gex │ │ │ │ └── 80.gex │ │ │ ├── 81-109 │ │ │ │ ├── 100.gex │ │ │ │ ├── 101.gex │ │ │ │ ├── 104.gex │ │ │ │ ├── 105.gex │ │ │ │ ├── 106.gex │ │ │ │ ├── 107.gex │ │ │ │ ├── 108.gex │ │ │ │ ├── 109F.gex │ │ │ │ ├── 81.gex │ │ │ │ ├── 82.gex │ │ │ │ ├── 84.gex │ │ │ │ ├── 85.gex │ │ │ │ ├── 86.gex │ │ │ │ ├── 88.gex │ │ │ │ ├── 89.gex │ │ │ │ ├── 90.gex │ │ │ │ ├── 91.gex │ │ │ │ ├── 91F.gex │ │ │ │ ├── 92.gex │ │ │ │ ├── 93.gex │ │ │ │ ├── 94.gex │ │ │ │ ├── 95.gex │ │ │ │ ├── 96.gex │ │ │ │ ├── 97.gex │ │ │ │ ├── 98.gex │ │ │ │ ├── 99.gex │ │ │ │ └── about.txt │ │ │ └── more │ │ │ │ ├── E006-1.gex │ │ │ │ ├── E009-1.gex │ │ │ │ ├── E013-3.gex │ │ │ │ ├── E015-6.gex │ │ │ │ ├── E021-3.gex │ │ │ │ ├── E022-10.gex │ │ │ │ ├── E022-11.gex │ │ │ │ ├── E022-12.gex │ │ │ │ ├── E022-13.gex │ │ │ │ ├── E022-7.gex │ │ │ │ ├── E022-8.gex │ │ │ │ ├── E022-9.gex │ │ │ │ ├── E023-14.gex │ │ │ │ ├── E023-15.gex │ │ │ │ ├── E023-16.gex │ │ │ │ ├── E023-17.gex │ │ │ │ └── E023-19.gex │ │ ├── 7_Book │ │ │ ├── 00EE │ │ │ │ ├── 10 │ │ │ │ │ ├── E072-10.gex │ │ │ │ │ ├── E072-11.gex │ │ │ │ │ ├── E072-11f.gex │ │ │ │ │ ├── E072-12.gex │ │ │ │ │ ├── E072-13.gex │ │ │ │ │ ├── E072-15.gex │ │ │ │ │ ├── E072-16.gex │ │ │ │ │ ├── E072-8.gex │ │ │ │ │ ├── E073-17.gex │ │ │ │ │ ├── E073-18.gex │ │ │ │ │ ├── E074-20.gex │ │ │ │ │ ├── E074-21.gex │ │ │ │ │ ├── E074-22.gex │ │ │ │ │ ├── E074-23.gex │ │ │ │ │ └── E074-24.gex │ │ │ │ ├── 11 │ │ │ │ │ ├── E075-25.gex │ │ │ │ │ ├── E075-26.gex │ │ │ │ │ ├── E075-27f.gex │ │ │ │ │ ├── E075-28-1.gex │ │ │ │ │ ├── E075-28.gex │ │ │ │ │ ├── E075-29.gex │ │ │ │ │ ├── E075-29f.gex │ │ │ │ │ ├── E076-31.gex │ │ │ │ │ ├── E076-31f.gex │ │ │ │ │ ├── E076-32.gex │ │ │ │ │ ├── E076-33.gex │ │ │ │ │ ├── E076-34.gex │ │ │ │ │ ├── E076-35.gex │ │ │ │ │ ├── E077-37.gex │ │ │ │ │ ├── E077-38.gex │ │ │ │ │ ├── E077-40.gex │ │ │ │ │ ├── E078-41.gex │ │ │ │ │ ├── E081-2.gex │ │ │ │ │ ├── E081-3.gex │ │ │ │ │ ├── E092-5.gex │ │ │ │ │ └── tp.gex │ │ │ │ ├── 01 │ │ │ │ │ ├── E006-1.gex │ │ │ │ │ ├── E009-1.gex │ │ │ │ │ ├── E013-3.gex │ │ │ │ │ ├── E015-6.gex │ │ │ │ │ ├── E021-3.gex │ │ │ │ │ ├── E022-10.gex │ │ │ │ │ ├── E022-11.gex │ │ │ │ │ ├── E022-12.gex │ │ │ │ │ ├── E022-13.gex │ │ │ │ │ ├── E022-7.gex │ │ │ │ │ ├── E022-8.gex │ │ │ │ │ ├── E022-9.gex │ │ │ │ │ ├── E023-14.gex │ │ │ │ │ └── E023-14F.gex │ │ │ │ ├── 02 │ │ │ │ │ ├── E023-15.gex │ │ │ │ │ ├── E023-16.gex │ │ │ │ │ ├── E023-17.gex │ │ │ │ │ ├── E023-19.gex │ │ │ │ │ ├── E023-21.gex │ │ │ │ │ ├── E023-22.gex │ │ │ │ │ ├── E028-2-1.gex │ │ │ │ │ ├── E028-2.gex │ │ │ │ │ ├── E028-3.gex │ │ │ │ │ ├── E029-4.gex │ │ │ │ │ ├── E030-5-1.gex │ │ │ │ │ ├── E030-5.gex │ │ │ │ │ ├── E034-2gex.gex │ │ │ │ │ └── E034-9.gex │ │ │ │ ├── 03 │ │ │ │ │ ├── E037-20.gex │ │ │ │ │ ├── E037-21.gex │ │ │ │ │ ├── E037-22.gex │ │ │ │ │ ├── E037-23.gex │ │ │ │ │ ├── E037-24.gex │ │ │ │ │ ├── E037-25.gex │ │ │ │ │ ├── E037-26.gex │ │ │ │ │ ├── E038-27.gex │ │ │ │ │ ├── E039-28.gex │ │ │ │ │ ├── E040-28-1.gex │ │ │ │ │ ├── E041-1.gex │ │ │ │ │ ├── E042-2.gex │ │ │ │ │ ├── E043-3.gex │ │ │ │ │ └── E044-4.gex │ │ │ │ ├── 04 │ │ │ │ │ ├── E044-6.gex │ │ │ │ │ ├── E046-7.gex │ │ │ │ │ ├── E046-8.gex │ │ │ │ │ ├── E046-8y.gex │ │ │ │ │ ├── E048-10.gex │ │ │ │ │ ├── E051-1.gex │ │ │ │ │ ├── E051-10.gex │ │ │ │ │ ├── E051-2.gex │ │ │ │ │ ├── E051-4.gex │ │ │ │ │ ├── E051-5.gex │ │ │ │ │ ├── E051-6.gex │ │ │ │ │ ├── E051-7.gex │ │ │ │ │ ├── E051-8.gex │ │ │ │ │ └── E051-9.gex │ │ │ │ ├── 05 │ │ │ │ │ ├── E051-11-trap.gex │ │ │ │ │ ├── E051-11.gex │ │ │ │ │ ├── E051-12.gex │ │ │ │ │ ├── E051-13.gex │ │ │ │ │ ├── E051-14-1.gex │ │ │ │ │ ├── E051-14-2.gex │ │ │ │ │ ├── E051-14.gex │ │ │ │ │ ├── E051-16.gex │ │ │ │ │ ├── E051-17.gex │ │ │ │ │ ├── E051-18.gex │ │ │ │ │ ├── E051-19.gex │ │ │ │ │ ├── E051-20.gex │ │ │ │ │ ├── E051-21.gex │ │ │ │ │ └── E051-22.gex │ │ │ │ ├── 06 │ │ │ │ │ ├── E051-23.gex │ │ │ │ │ ├── E051-24.gex │ │ │ │ │ ├── E051-25.gex │ │ │ │ │ ├── E051-26.gex │ │ │ │ │ ├── E051-27.gex │ │ │ │ │ ├── E051-28.gex │ │ │ │ │ ├── E051-29.gex │ │ │ │ │ ├── E051-30.gex │ │ │ │ │ ├── E051-31.gex │ │ │ │ │ ├── E051-32.gex │ │ │ │ │ ├── E056-33.gex │ │ │ │ │ ├── E057-37.gex │ │ │ │ │ ├── E057-38.gex │ │ │ │ │ └── E057-40.gex │ │ │ │ ├── 07 │ │ │ │ │ ├── E057-41.gex │ │ │ │ │ ├── E057-42.gex │ │ │ │ │ ├── E057-44.gex │ │ │ │ │ ├── E057-45.gex │ │ │ │ │ ├── E057-46.gex │ │ │ │ │ ├── E059-47.gex │ │ │ │ │ ├── E059-48.gex │ │ │ │ │ ├── E059-49.gex │ │ │ │ │ ├── E059-50.gex │ │ │ │ │ ├── E059-51.gex │ │ │ │ │ ├── E059-52.gex │ │ │ │ │ ├── E059-53.gex │ │ │ │ │ ├── E059-54-1.gex │ │ │ │ │ └── E059-54.gex │ │ │ │ ├── 08 │ │ │ │ │ ├── E059-55.gex │ │ │ │ │ ├── E059-56.gex │ │ │ │ │ ├── E059-57.gex │ │ │ │ │ ├── E059-58.gex │ │ │ │ │ ├── E059-59.gex │ │ │ │ │ ├── E061-60.gex │ │ │ │ │ ├── E061-61.gex │ │ │ │ │ ├── E061-62.gex │ │ │ │ │ ├── E061-63.gex │ │ │ │ │ ├── E061-63f.gex │ │ │ │ │ ├── E061-65.gex │ │ │ │ │ ├── E061-65f.gex │ │ │ │ │ ├── E061-66.gex │ │ │ │ │ ├── E061-66f.gex │ │ │ │ │ ├── E061-67.gex │ │ │ │ │ ├── E064-01.gex │ │ │ │ │ └── E065-02.gex │ │ │ │ └── 09 │ │ │ │ │ ├── E066-03.gex │ │ │ │ │ ├── E066-04.gex │ │ │ │ │ ├── E066-04f.gex │ │ │ │ │ ├── E067-6.gex │ │ │ │ │ ├── E068-7.gex │ │ │ │ │ ├── E069-8.gex │ │ │ │ │ ├── E070-9-1.gex │ │ │ │ │ ├── E070-9.gex │ │ │ │ │ ├── E071-1.gex │ │ │ │ │ ├── E071-2.gex │ │ │ │ │ ├── E071-3.gex │ │ │ │ │ ├── E071-4.gex │ │ │ │ │ ├── E071-5.gex │ │ │ │ │ ├── E071-6.gex │ │ │ │ │ └── E072-7.gex │ │ │ ├── LL │ │ │ │ ├── 014-2.gex │ │ │ │ ├── 43-6.gex │ │ │ │ ├── C003.gex │ │ │ │ ├── C006f.gex │ │ │ │ ├── L016-9.gex │ │ │ │ ├── L023-2.gex │ │ │ │ ├── L024-3.gex │ │ │ │ ├── L025-5.gex │ │ │ │ ├── L041-3.gex │ │ │ │ ├── L045-10.gex │ │ │ │ ├── L046-17.gex │ │ │ │ ├── L064.gex │ │ │ │ └── L81-3.gex │ │ │ └── LLL │ │ │ │ ├── L014-2.gex │ │ │ │ ├── L017-11.gex │ │ │ │ ├── L022-1.gex │ │ │ │ ├── L023-2.gex │ │ │ │ ├── L023-3.gex │ │ │ │ ├── L025-5.gex │ │ │ │ ├── L025-6.gex │ │ │ │ ├── L03-6.gex │ │ │ │ ├── L039-2.gex │ │ │ │ ├── L041-3.gex │ │ │ │ ├── L043-5-1.gex │ │ │ │ ├── L043-5.gex │ │ │ │ ├── L043-6-1.gex │ │ │ │ ├── L043-6.gex │ │ │ │ ├── L044-8.gex │ │ │ │ ├── L046-16.gex │ │ │ │ ├── L046-17.gex │ │ │ │ ├── L053-1-1.gex │ │ │ │ ├── L053-1-2.gex │ │ │ │ ├── L053-1.gex │ │ │ │ ├── L054-2-1.gex │ │ │ │ ├── L054-2.gex │ │ │ │ ├── L054-3.gex │ │ │ │ ├── L055-5.gex │ │ │ │ ├── L057-1-0.gex │ │ │ │ ├── L057-1-1.gex │ │ │ │ ├── L057-1.gex │ │ │ │ ├── L057-2.gex │ │ │ │ ├── L057-3-1.gex │ │ │ │ ├── L057-3-2.gex │ │ │ │ ├── L057-3.gex │ │ │ │ ├── L057-6.gex │ │ │ │ ├── L058-9.gex │ │ │ │ ├── L081-4.gex │ │ │ │ ├── L091-13.gex │ │ │ │ ├── L091-14.gex │ │ │ │ ├── L096-3.gex │ │ │ │ ├── L164-4.gex │ │ │ │ ├── L164-5.gex │ │ │ │ ├── L181-4.gex │ │ │ │ ├── L182-5.gex │ │ │ │ ├── L182-6.gex │ │ │ │ ├── L183-11.gex │ │ │ │ ├── L183-7.gex │ │ │ │ ├── L189-1.gex │ │ │ │ ├── L189-2.gex │ │ │ │ ├── L190-7.gex │ │ │ │ ├── L194-2.gex │ │ │ │ ├── L196-3-1.gex │ │ │ │ ├── L196-3.gex │ │ │ │ ├── L2-32.gex │ │ │ │ ├── L264-4.gex │ │ │ │ ├── L46-17.gex │ │ │ │ ├── L66-1.gex │ │ │ │ ├── L68-5.gex │ │ │ │ ├── L86-1.gex │ │ │ │ ├── LL153-1.gex │ │ │ │ ├── yL045-10.gex │ │ │ │ ├── yL157-1.gex │ │ │ │ ├── yL158-10.gex │ │ │ │ ├── yL158-9.gex │ │ │ │ ├── yL181-4.gex │ │ │ │ ├── yL182-1.gex │ │ │ │ ├── yL182-4.gex │ │ │ │ ├── yL198-1.gex │ │ │ │ ├── yL198-2.gex │ │ │ │ ├── yL202-2.gex │ │ │ │ ├── yL246-1.gex │ │ │ │ ├── yL248-1.gex │ │ │ │ ├── yL251-1.gex │ │ │ │ └── yL252-6.gex │ │ ├── Other │ │ │ ├── Auxiliary │ │ │ │ ├── E046-10.gex │ │ │ │ ├── E092-5.gex │ │ │ │ ├── aux2 │ │ │ │ │ ├── 22.gex │ │ │ │ │ ├── 3.gex │ │ │ │ │ ├── 4sim.gex │ │ │ │ │ ├── 60.gex │ │ │ │ │ ├── 89.gex │ │ │ │ │ ├── aa.gex │ │ │ │ │ ├── ax.gex │ │ │ │ │ ├── e04f.gex │ │ │ │ │ ├── pnn.gex │ │ │ │ │ └── trapezoid.gex │ │ │ │ ├── r1.gex │ │ │ │ ├── r21.gex │ │ │ │ └── ye_aux │ │ │ │ │ ├── 2angle.gex │ │ │ │ │ ├── 42.gex │ │ │ │ │ ├── 81.gex │ │ │ │ │ ├── AA_P18.gex │ │ │ │ │ ├── construct_parallelogram_as_pn_already_exists.gex │ │ │ │ │ ├── iso_perp_take_mid.gex │ │ │ │ │ ├── ll43.gex │ │ │ │ │ ├── ppara.gex │ │ │ │ │ ├── rotate.gex │ │ │ │ │ ├── think.gex │ │ │ │ │ ├── think2.gex │ │ │ │ │ ├── tn_if_two_pt_on_cr_then_create_a_intersection.gex │ │ │ │ │ ├── trapezoid.gex │ │ │ │ │ ├── wang2.gex │ │ │ │ │ ├── wang22.gex │ │ │ │ │ ├── wang3.gex │ │ │ │ │ ├── wong.gex │ │ │ │ │ ├── wong_improve_angle_addition.gex │ │ │ │ │ ├── x_1.gex │ │ │ │ │ ├── x_25.gex │ │ │ │ │ └── y1.gex │ │ │ ├── NDG │ │ │ │ ├── 1-c2-1 │ │ │ │ ├── 10-ea-3 │ │ │ │ ├── 11-pp-1 │ │ │ │ ├── 12-PP-2 │ │ │ │ ├── 13-lt-1 │ │ │ │ ├── 14-LT-2 │ │ │ │ ├── 15-LT-3 │ │ │ │ ├── 16-eq-1 │ │ │ │ ├── 17-eq-2 │ │ │ │ ├── 18-eq-3 │ │ │ │ ├── 19-eq-4 │ │ │ │ ├── 2-c2-2 │ │ │ │ ├── 3-t-1 │ │ │ │ ├── 4-t-2 │ │ │ │ ├── 5-eq-1 │ │ │ │ ├── 6-eq-2 │ │ │ │ ├── 7-ea-1 │ │ │ │ ├── 8-eq-2 │ │ │ │ └── 9-eq-3 │ │ │ ├── draw │ │ │ │ ├── Griffiths.gex │ │ │ │ ├── Shwarz03.gex │ │ │ │ ├── Thebault │ │ │ │ │ ├── t4.gex │ │ │ │ │ ├── t5.gex │ │ │ │ │ ├── t6.gex │ │ │ │ │ ├── t7.gex │ │ │ │ │ └── t8.gex │ │ │ │ ├── butterfly.gex │ │ │ │ ├── eqh.gex │ │ │ │ ├── eqtriangle.gex │ │ │ │ ├── flinkage.gex │ │ │ │ ├── locus_incenter.gex │ │ │ │ ├── pascal.gex │ │ │ │ ├── peaucellier.gex │ │ │ │ ├── similarity.gex │ │ │ │ └── simson.gex │ │ │ ├── gao │ │ │ │ ├── C │ │ │ │ │ ├── C100.gex │ │ │ │ │ ├── C101.gex │ │ │ │ │ ├── C102.gex │ │ │ │ │ ├── C103.gex │ │ │ │ │ ├── C104.gex │ │ │ │ │ ├── C105.gex │ │ │ │ │ ├── C106.gex │ │ │ │ │ ├── C107-1.gex │ │ │ │ │ ├── C107-2.gex │ │ │ │ │ ├── C107.gex │ │ │ │ │ ├── C108.gex │ │ │ │ │ ├── C109.gex │ │ │ │ │ ├── C110.gex │ │ │ │ │ ├── C111.gex │ │ │ │ │ └── C112.gex │ │ │ │ ├── L │ │ │ │ │ ├── L022-1.gex │ │ │ │ │ ├── L023-2.gex │ │ │ │ │ ├── L025-5.gex │ │ │ │ │ ├── L043-6.gex │ │ │ │ │ ├── L044-8.gex │ │ │ │ │ ├── L181-4.gex │ │ │ │ │ ├── L182-5.gex │ │ │ │ │ ├── L182-6.gex │ │ │ │ │ ├── L183-11.gex │ │ │ │ │ ├── L183-7.gex │ │ │ │ │ ├── L189-1.gex │ │ │ │ │ ├── L189-2.gex │ │ │ │ │ ├── L190-7.gex │ │ │ │ │ ├── L196-3-1.gex │ │ │ │ │ ├── L196-3.gex │ │ │ │ │ ├── L264-4.gex │ │ │ │ │ ├── L46-17.gex │ │ │ │ │ ├── L66-1.gex │ │ │ │ │ ├── L68-5.gex │ │ │ │ │ └── LL153-1.gex │ │ │ │ ├── M │ │ │ │ │ ├── M010-26-1.gex │ │ │ │ │ ├── M010-26.gex │ │ │ │ │ ├── M010-32.gex │ │ │ │ │ ├── M017-18.gex │ │ │ │ │ ├── M018-19.gex │ │ │ │ │ ├── M020-52.gex │ │ │ │ │ ├── M021-59.gex │ │ │ │ │ ├── M021-62.gex │ │ │ │ │ ├── M021-64.gex │ │ │ │ │ ├── M024-94.gex │ │ │ │ │ ├── M04-6.gex │ │ │ │ │ └── M09-14.gex │ │ │ │ └── Y │ │ │ │ │ ├── yC102.gex │ │ │ │ │ ├── yC103.gex │ │ │ │ │ ├── yL045-10.gex │ │ │ │ │ ├── yL157-1.gex │ │ │ │ │ ├── yL158-10.gex │ │ │ │ │ ├── yL158-9.gex │ │ │ │ │ ├── yL181-4.gex │ │ │ │ │ ├── yL182-1.gex │ │ │ │ │ └── yL182-4.gex │ │ │ ├── locus │ │ │ │ ├── centroid.gex │ │ │ │ ├── fuerbach.gex │ │ │ │ ├── incenter.gex │ │ │ │ ├── orth.gex │ │ │ │ └── orth1.gex │ │ │ ├── mold │ │ │ │ ├── 5c-11-15.gex │ │ │ │ ├── EX001.gex │ │ │ │ ├── EX003.gex │ │ │ │ ├── EX005.gex │ │ │ │ ├── EX006.gex │ │ │ │ ├── EX007-sm.gex │ │ │ │ ├── EX010-mq.gex │ │ │ │ ├── EX011-9pt.gex │ │ │ │ ├── EX012.gex │ │ │ │ ├── EX013.gex │ │ │ │ ├── EX018-2c.gex │ │ │ │ ├── centriod02n.gex │ │ │ │ └── para02.gex │ │ │ ├── morley │ │ │ │ ├── morley.gex │ │ │ │ └── morley_ndg.gex │ │ │ ├── mproof │ │ │ │ ├── OrthoBisector.gex │ │ │ │ └── cy.gex │ │ │ ├── ndg1 │ │ │ │ ├── 44.gex │ │ │ │ └── 53.gex │ │ │ ├── ndgTest │ │ │ │ ├── 03.gex │ │ │ │ ├── 06.gex │ │ │ │ ├── 08.gex │ │ │ │ ├── 12.gex │ │ │ │ ├── 16.gex │ │ │ │ ├── 17.gex │ │ │ │ ├── 20.gex │ │ │ │ ├── 22.gex │ │ │ │ ├── 23.gex │ │ │ │ ├── 24.gex │ │ │ │ ├── 32.gex │ │ │ │ ├── 33.gex │ │ │ │ ├── 44.gex │ │ │ │ ├── 48.gex │ │ │ │ ├── 49.gex │ │ │ │ ├── 50.gex │ │ │ │ ├── 62.gex │ │ │ │ ├── 65.gex │ │ │ │ ├── 70.gex │ │ │ │ ├── 73.gex │ │ │ │ ├── 74.gex │ │ │ │ ├── 81.gex │ │ │ │ ├── 90.gex │ │ │ │ ├── 91.gex │ │ │ │ ├── 93.gex │ │ │ │ └── 94.gex │ │ │ ├── ndgs │ │ │ │ ├── 01.gex │ │ │ │ ├── 02.gex │ │ │ │ ├── 03.gex │ │ │ │ ├── 04.gex │ │ │ │ ├── 05.gex │ │ │ │ ├── 06.gex │ │ │ │ ├── 07.gex │ │ │ │ ├── 08.gex │ │ │ │ └── 09.gex │ │ │ ├── new │ │ │ │ └── InCircumcenter.gex │ │ │ ├── old │ │ │ │ ├── centroid_area.gex │ │ │ │ ├── examples-12-25 │ │ │ │ │ ├── Showcase │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── Morley.gex │ │ │ │ │ │ ├── Pedal │ │ │ │ │ │ │ ├── 2-point-problem.gex │ │ │ │ │ │ │ ├── pedal-tirnagle-problem.gex │ │ │ │ │ │ │ ├── pedal-triangle.gex │ │ │ │ │ │ │ └── schwarz-solution.gex │ │ │ │ │ │ ├── Ruler-Compass │ │ │ │ │ │ │ ├── 3PPL.gex │ │ │ │ │ │ │ └── 3p.gex │ │ │ │ │ │ ├── Shwarz03.gex │ │ │ │ │ │ ├── area-method │ │ │ │ │ │ │ ├── centriod-area-method.gex │ │ │ │ │ │ │ ├── centroid-traditional.gex │ │ │ │ │ │ │ ├── para-area-method.gex │ │ │ │ │ │ │ └── para-traditional.gex │ │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ │ ├── convert.jar │ │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ │ │ ├── 5c-11-15.gex │ │ │ │ │ │ │ ├── EX001.gex │ │ │ │ │ │ │ ├── EX003.gex │ │ │ │ │ │ │ ├── EX005.gex │ │ │ │ │ │ │ ├── EX006.gex │ │ │ │ │ │ │ ├── EX007-sm.gex │ │ │ │ │ │ │ ├── EX010-mq.gex │ │ │ │ │ │ │ ├── EX011-9pt.gex │ │ │ │ │ │ │ ├── EX012.gex │ │ │ │ │ │ │ ├── EX013.gex │ │ │ │ │ │ │ └── EX018-2c.gex │ │ │ │ │ │ ├── g-simson.gex │ │ │ │ │ │ ├── manual-proofs │ │ │ │ │ │ │ ├── circle-fig │ │ │ │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ │ │ └── line-fig │ │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ │ │ │ └── trapzoid02-n.gex │ │ │ │ │ │ ├── pappus.gex │ │ │ │ │ │ ├── pascal.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── proof-examples │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ └── para02.gex │ │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ └── two-ortho-circle.gex │ │ │ │ │ ├── new │ │ │ │ │ │ ├── 3PPL.gex │ │ │ │ │ │ ├── 3p.gex │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── Morley.gex │ │ │ │ │ │ ├── Shwarz03.gex │ │ │ │ │ │ ├── area-method │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ └── para02.gex │ │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ │ ├── convert.jar │ │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ │ │ ├── 5c-11-15.gex │ │ │ │ │ │ │ ├── EX001.gex │ │ │ │ │ │ │ ├── EX003.gex │ │ │ │ │ │ │ ├── EX005.gex │ │ │ │ │ │ │ ├── EX006.gex │ │ │ │ │ │ │ ├── EX007-sm.gex │ │ │ │ │ │ │ ├── EX010-mq.gex │ │ │ │ │ │ │ ├── EX011-9pt.gex │ │ │ │ │ │ │ ├── EX012.gex │ │ │ │ │ │ │ ├── EX013.gex │ │ │ │ │ │ │ └── EX018-2c.gex │ │ │ │ │ │ ├── manual-proofs │ │ │ │ │ │ │ ├── circle-fig │ │ │ │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ │ │ └── line-fig │ │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ │ │ │ └── trapzoid02-n.gex │ │ │ │ │ │ ├── pappus.gex │ │ │ │ │ │ ├── pascal.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── pedal-problem.gex │ │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ └── two-ortho-circle.gex │ │ │ │ │ ├── old │ │ │ │ │ │ ├── 2-ortho-cirlces.gex │ │ │ │ │ │ ├── 2c.gex │ │ │ │ │ │ ├── 5-c2.gex │ │ │ │ │ │ ├── 5-point-circle.gex │ │ │ │ │ │ ├── 5c.gex │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── Area │ │ │ │ │ │ │ ├── centroid.gex │ │ │ │ │ │ │ └── paral.gex │ │ │ │ │ │ ├── Morley.gex │ │ │ │ │ │ ├── animation │ │ │ │ │ │ │ ├── ortho-ani10.gex │ │ │ │ │ │ │ ├── ortho-ani11.gex │ │ │ │ │ │ │ ├── ortho-ani12.gex │ │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ │ ├── two-circles.gex │ │ │ │ │ │ │ └── two-full-angles.gex │ │ │ │ │ │ ├── area-method │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ └── para02.gex │ │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ │ ├── consgex │ │ │ │ │ │ │ ├── 1957-2.gex │ │ │ │ │ │ │ ├── 3-parallel.gex │ │ │ │ │ │ │ ├── 3p.gex │ │ │ │ │ │ │ ├── A-B.gex │ │ │ │ │ │ │ ├── Aah.gex │ │ │ │ │ │ │ ├── PPL.gex │ │ │ │ │ │ │ ├── ctangent1.gex │ │ │ │ │ │ │ ├── ctangent2.gex │ │ │ │ │ │ │ ├── cut.gex │ │ │ │ │ │ │ ├── hhh.gex │ │ │ │ │ │ │ ├── htm.gex │ │ │ │ │ │ │ ├── mmm.gex │ │ │ │ │ │ │ ├── peri1.gex │ │ │ │ │ │ │ └── triangle.gex │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── 0ani │ │ │ │ │ │ │ │ ├── ortho0.gex │ │ │ │ │ │ │ │ ├── ortho1.gex │ │ │ │ │ │ │ │ ├── ortho2.gex │ │ │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ │ │ ├── two-circles.gex │ │ │ │ │ │ │ │ └── two-full-angles.gex │ │ │ │ │ │ │ ├── Cons │ │ │ │ │ │ │ │ ├── 1957-1.gex │ │ │ │ │ │ │ │ ├── 1957-2.gex │ │ │ │ │ │ │ │ ├── 2ctagent.gex │ │ │ │ │ │ │ │ ├── A-B.gex │ │ │ │ │ │ │ │ ├── Aah.gex │ │ │ │ │ │ │ │ ├── PPL.gex │ │ │ │ │ │ │ │ ├── ctangent1.gex │ │ │ │ │ │ │ │ ├── cut.gex │ │ │ │ │ │ │ │ ├── hhh.gex │ │ │ │ │ │ │ │ ├── htm.gex │ │ │ │ │ │ │ │ ├── mmm.gex │ │ │ │ │ │ │ │ ├── peri1.gex │ │ │ │ │ │ │ │ └── triangle.gex │ │ │ │ │ │ │ ├── convert.jar │ │ │ │ │ │ │ └── inequality │ │ │ │ │ │ │ │ ├── 0-readme-first.gex │ │ │ │ │ │ │ │ ├── 2m.gex │ │ │ │ │ │ │ │ ├── Pedal.gex │ │ │ │ │ │ │ │ ├── a-bm.gex │ │ │ │ │ │ │ │ ├── b-c.gex │ │ │ │ │ │ │ │ ├── extern-bi.gex │ │ │ │ │ │ │ │ ├── median.gex │ │ │ │ │ │ │ │ ├── median0.gex │ │ │ │ │ │ │ │ ├── paradox.gex │ │ │ │ │ │ │ │ ├── pedal-triangle.gex │ │ │ │ │ │ │ │ ├── ptolemy.gex │ │ │ │ │ │ │ │ ├── schwarz1.gex │ │ │ │ │ │ │ │ ├── steiner-lehmus.gex │ │ │ │ │ │ │ │ ├── steiner-lehmus1.gex │ │ │ │ │ │ │ │ └── two-point.gex │ │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ │ │ ├── 5-point-circle.gex │ │ │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ │ │ ├── 5c.gex │ │ │ │ │ │ │ ├── EX001.gex │ │ │ │ │ │ │ ├── EX003.gex │ │ │ │ │ │ │ ├── EX005.gex │ │ │ │ │ │ │ ├── EX006.gex │ │ │ │ │ │ │ ├── EX007.gex │ │ │ │ │ │ │ ├── EX010.gex │ │ │ │ │ │ │ ├── EX011.gex │ │ │ │ │ │ │ ├── EX012.gex │ │ │ │ │ │ │ ├── EX013.gex │ │ │ │ │ │ │ ├── EX018.gex │ │ │ │ │ │ │ ├── five-circle.gex │ │ │ │ │ │ │ └── five-point-circle.gex │ │ │ │ │ │ ├── inequality │ │ │ │ │ │ │ ├── 0-Readme-first.gex │ │ │ │ │ │ │ ├── 2m.gex │ │ │ │ │ │ │ ├── Pedal.gex │ │ │ │ │ │ │ ├── a-bm.gex │ │ │ │ │ │ │ ├── b-c.gex │ │ │ │ │ │ │ ├── extern-bi.gex │ │ │ │ │ │ │ ├── median.gex │ │ │ │ │ │ │ ├── median0.gex │ │ │ │ │ │ │ ├── paradox.gex │ │ │ │ │ │ │ ├── pedal-problem.gex │ │ │ │ │ │ │ ├── ptolemy.gex │ │ │ │ │ │ │ ├── schwarz.gex │ │ │ │ │ │ │ ├── schwarz1.gex │ │ │ │ │ │ │ ├── steiner-lehmus.gex │ │ │ │ │ │ │ ├── steiner-lehmus1.gex │ │ │ │ │ │ │ ├── steiner-point.gex │ │ │ │ │ │ │ └── two-points.gex │ │ │ │ │ │ ├── manual-proofs │ │ │ │ │ │ │ ├── circle-fig │ │ │ │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ │ │ └── line-fig │ │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ │ │ │ └── trapzoid02-n.gex │ │ │ │ │ │ ├── others │ │ │ │ │ │ │ ├── 1.gex │ │ │ │ │ │ │ ├── 1957-1.gex │ │ │ │ │ │ │ ├── 2-circles.gex │ │ │ │ │ │ │ ├── 2.gex │ │ │ │ │ │ │ ├── 3-square.gex │ │ │ │ │ │ │ ├── 5-c2.gex │ │ │ │ │ │ │ ├── 5-circle.gex │ │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ │ ├── desargues.gex │ │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ │ ├── iso-triangle.gex │ │ │ │ │ │ │ ├── pedal.gex │ │ │ │ │ │ │ ├── radical.gex │ │ │ │ │ │ │ ├── square.gex │ │ │ │ │ │ │ ├── sum3.gex │ │ │ │ │ │ │ └── two-circles.gex │ │ │ │ │ │ ├── pappus.gex │ │ │ │ │ │ ├── parterson.gex │ │ │ │ │ │ ├── pascal.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── proof-examples │ │ │ │ │ │ │ ├── line-figures │ │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ │ ├── centroid01.gex │ │ │ │ │ │ │ │ ├── centroid02.gex │ │ │ │ │ │ │ │ ├── iso-right-triangle.gex │ │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ │ ├── mdedian02.gex │ │ │ │ │ │ │ │ ├── median03.gex │ │ │ │ │ │ │ │ ├── median04.gex │ │ │ │ │ │ │ │ ├── median05.gex │ │ │ │ │ │ │ │ ├── midpoint01.gex │ │ │ │ │ │ │ │ ├── orthocenter01.gex │ │ │ │ │ │ │ │ ├── para01.gex │ │ │ │ │ │ │ │ ├── para02.gex │ │ │ │ │ │ │ │ ├── para03.gex │ │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ │ ├── para05.gex │ │ │ │ │ │ │ │ ├── quad01.gex │ │ │ │ │ │ │ │ ├── quad02.gex │ │ │ │ │ │ │ │ ├── trapezoid01.gex │ │ │ │ │ │ │ │ └── trapezoid02.gex │ │ │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ │ │ └── with-circles │ │ │ │ │ │ │ │ ├── 3equi-triangle.gex │ │ │ │ │ │ │ │ ├── 9-point.gex │ │ │ │ │ │ │ │ ├── bisector01.gex │ │ │ │ │ │ │ │ ├── napoleon01.gex │ │ │ │ │ │ │ │ ├── ortho01.gex │ │ │ │ │ │ │ │ ├── ortho02.gex │ │ │ │ │ │ │ │ ├── pedal01.gex │ │ │ │ │ │ │ │ ├── ptolemy01.gex │ │ │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ │ │ ├── square01.gex │ │ │ │ │ │ │ │ ├── steiner01.gex │ │ │ │ │ │ │ │ └── two-circle.gex │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ └── sum3.gex │ │ │ │ │ └── two-ortho-circle.gex │ │ │ │ └── examples │ │ │ │ │ ├── animation │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ ├── Morley.gex │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ ├── g-simson.gex │ │ │ │ │ ├── pappus.gex │ │ │ │ │ ├── pascal.gex │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ ├── simson.gex │ │ │ │ │ └── two-ortho-circle.gex │ │ │ │ │ ├── convert.jar │ │ │ │ │ ├── jar-part1 │ │ │ │ │ ├── Readme-1st.gex │ │ │ │ │ └── example1.gex │ │ │ │ │ ├── previous │ │ │ │ │ ├── new │ │ │ │ │ │ ├── 3PPL.gex │ │ │ │ │ │ ├── 3p.gex │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── Morley.gex │ │ │ │ │ │ ├── Shwarz03.gex │ │ │ │ │ │ ├── area-method │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ └── para02.gex │ │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ │ ├── convert.jar │ │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ │ │ ├── 5c-11-15.gex │ │ │ │ │ │ │ ├── EX001.gex │ │ │ │ │ │ │ ├── EX003.gex │ │ │ │ │ │ │ ├── EX005.gex │ │ │ │ │ │ │ ├── EX006.gex │ │ │ │ │ │ │ ├── EX007-sm.gex │ │ │ │ │ │ │ ├── EX010-mq.gex │ │ │ │ │ │ │ ├── EX011-9pt.gex │ │ │ │ │ │ │ ├── EX012.gex │ │ │ │ │ │ │ ├── EX013.gex │ │ │ │ │ │ │ └── EX018-2c.gex │ │ │ │ │ │ ├── manual-proofs │ │ │ │ │ │ │ ├── circle-fig │ │ │ │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ │ │ └── line-fig │ │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ │ │ │ └── trapzoid02-n.gex │ │ │ │ │ │ ├── pappus.gex │ │ │ │ │ │ ├── pascal.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── pedal-problem.gex │ │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ └── two-ortho-circle.gex │ │ │ │ │ └── old │ │ │ │ │ │ ├── 2-ortho-cirlces.gex │ │ │ │ │ │ ├── 2c.gex │ │ │ │ │ │ ├── 5-c2.gex │ │ │ │ │ │ ├── 5-point-circle.gex │ │ │ │ │ │ ├── 5c.gex │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── Area │ │ │ │ │ │ ├── centroid.gex │ │ │ │ │ │ └── paral.gex │ │ │ │ │ │ ├── Morley.gex │ │ │ │ │ │ ├── animation │ │ │ │ │ │ ├── ortho-ani10.gex │ │ │ │ │ │ ├── ortho-ani11.gex │ │ │ │ │ │ ├── ortho-ani12.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── two-circles.gex │ │ │ │ │ │ └── two-full-angles.gex │ │ │ │ │ │ ├── area-method │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ └── para02.gex │ │ │ │ │ │ ├── butterfly.gex │ │ │ │ │ │ ├── consgex │ │ │ │ │ │ ├── 1957-2.gex │ │ │ │ │ │ ├── 3-parallel.gex │ │ │ │ │ │ ├── 3p.gex │ │ │ │ │ │ ├── A-B.gex │ │ │ │ │ │ ├── Aah.gex │ │ │ │ │ │ ├── PPL.gex │ │ │ │ │ │ ├── ctangent1.gex │ │ │ │ │ │ ├── ctangent2.gex │ │ │ │ │ │ ├── cut.gex │ │ │ │ │ │ ├── hhh.gex │ │ │ │ │ │ ├── htm.gex │ │ │ │ │ │ ├── mmm.gex │ │ │ │ │ │ ├── peri1.gex │ │ │ │ │ │ └── triangle.gex │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── 0ani │ │ │ │ │ │ │ ├── ortho0.gex │ │ │ │ │ │ │ ├── ortho1.gex │ │ │ │ │ │ │ ├── ortho2.gex │ │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ │ ├── two-circles.gex │ │ │ │ │ │ │ └── two-full-angles.gex │ │ │ │ │ │ ├── Cons │ │ │ │ │ │ │ ├── 1957-1.gex │ │ │ │ │ │ │ ├── 1957-2.gex │ │ │ │ │ │ │ ├── 2ctagent.gex │ │ │ │ │ │ │ ├── A-B.gex │ │ │ │ │ │ │ ├── Aah.gex │ │ │ │ │ │ │ ├── PPL.gex │ │ │ │ │ │ │ ├── ctangent1.gex │ │ │ │ │ │ │ ├── cut.gex │ │ │ │ │ │ │ ├── hhh.gex │ │ │ │ │ │ │ ├── htm.gex │ │ │ │ │ │ │ ├── mmm.gex │ │ │ │ │ │ │ ├── peri1.gex │ │ │ │ │ │ │ └── triangle.gex │ │ │ │ │ │ ├── convert.jar │ │ │ │ │ │ └── inequality │ │ │ │ │ │ │ ├── 0-readme-first.gex │ │ │ │ │ │ │ ├── 2m.gex │ │ │ │ │ │ │ ├── Pedal.gex │ │ │ │ │ │ │ ├── a-bm.gex │ │ │ │ │ │ │ ├── b-c.gex │ │ │ │ │ │ │ ├── extern-bi.gex │ │ │ │ │ │ │ ├── median.gex │ │ │ │ │ │ │ ├── median0.gex │ │ │ │ │ │ │ ├── paradox.gex │ │ │ │ │ │ │ ├── pedal-triangle.gex │ │ │ │ │ │ │ ├── ptolemy.gex │ │ │ │ │ │ │ ├── schwarz1.gex │ │ │ │ │ │ │ ├── steiner-lehmus.gex │ │ │ │ │ │ │ ├── steiner-lehmus1.gex │ │ │ │ │ │ │ └── two-point.gex │ │ │ │ │ │ ├── feuerbach.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ │ ├── 5-point-circle.gex │ │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ │ ├── 5c.gex │ │ │ │ │ │ ├── EX001.gex │ │ │ │ │ │ ├── EX003.gex │ │ │ │ │ │ ├── EX005.gex │ │ │ │ │ │ ├── EX006.gex │ │ │ │ │ │ ├── EX007.gex │ │ │ │ │ │ ├── EX010.gex │ │ │ │ │ │ ├── EX011.gex │ │ │ │ │ │ ├── EX012.gex │ │ │ │ │ │ ├── EX013.gex │ │ │ │ │ │ ├── EX018.gex │ │ │ │ │ │ ├── five-circle.gex │ │ │ │ │ │ └── five-point-circle.gex │ │ │ │ │ │ ├── inequality │ │ │ │ │ │ ├── 0-Readme-first.gex │ │ │ │ │ │ ├── 2m.gex │ │ │ │ │ │ ├── Pedal.gex │ │ │ │ │ │ ├── a-bm.gex │ │ │ │ │ │ ├── b-c.gex │ │ │ │ │ │ ├── extern-bi.gex │ │ │ │ │ │ ├── median.gex │ │ │ │ │ │ ├── median0.gex │ │ │ │ │ │ ├── paradox.gex │ │ │ │ │ │ ├── pedal-problem.gex │ │ │ │ │ │ ├── ptolemy.gex │ │ │ │ │ │ ├── schwarz.gex │ │ │ │ │ │ ├── schwarz1.gex │ │ │ │ │ │ ├── steiner-lehmus.gex │ │ │ │ │ │ ├── steiner-lehmus1.gex │ │ │ │ │ │ ├── steiner-point.gex │ │ │ │ │ │ └── two-points.gex │ │ │ │ │ │ ├── manual-proofs │ │ │ │ │ │ ├── circle-fig │ │ │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ │ └── line-fig │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ │ │ └── trapzoid02-n.gex │ │ │ │ │ │ ├── others │ │ │ │ │ │ ├── 1.gex │ │ │ │ │ │ ├── 1957-1.gex │ │ │ │ │ │ ├── 2-circles.gex │ │ │ │ │ │ ├── 2.gex │ │ │ │ │ │ ├── 3-square.gex │ │ │ │ │ │ ├── 5-c2.gex │ │ │ │ │ │ ├── 5-circle.gex │ │ │ │ │ │ ├── 9-point-circle.gex │ │ │ │ │ │ ├── desargues.gex │ │ │ │ │ │ ├── feuerbach1.gex │ │ │ │ │ │ ├── feuerbach2.gex │ │ │ │ │ │ ├── iso-triangle.gex │ │ │ │ │ │ ├── pedal.gex │ │ │ │ │ │ ├── radical.gex │ │ │ │ │ │ ├── square.gex │ │ │ │ │ │ ├── sum3.gex │ │ │ │ │ │ └── two-circles.gex │ │ │ │ │ │ ├── pappus.gex │ │ │ │ │ │ ├── parterson.gex │ │ │ │ │ │ ├── pascal.gex │ │ │ │ │ │ ├── peaucellier.gex │ │ │ │ │ │ ├── proof-examples │ │ │ │ │ │ ├── line-figures │ │ │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ │ │ ├── centroid01.gex │ │ │ │ │ │ │ ├── centroid02.gex │ │ │ │ │ │ │ ├── iso-right-triangle.gex │ │ │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ │ │ ├── mdedian02.gex │ │ │ │ │ │ │ ├── median03.gex │ │ │ │ │ │ │ ├── median04.gex │ │ │ │ │ │ │ ├── median05.gex │ │ │ │ │ │ │ ├── midpoint01.gex │ │ │ │ │ │ │ ├── orthocenter01.gex │ │ │ │ │ │ │ ├── para01.gex │ │ │ │ │ │ │ ├── para02.gex │ │ │ │ │ │ │ ├── para03.gex │ │ │ │ │ │ │ ├── para04.gex │ │ │ │ │ │ │ ├── para05.gex │ │ │ │ │ │ │ ├── quad01.gex │ │ │ │ │ │ │ ├── quad02.gex │ │ │ │ │ │ │ ├── trapezoid01.gex │ │ │ │ │ │ │ └── trapezoid02.gex │ │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ │ └── with-circles │ │ │ │ │ │ │ ├── 3equi-triangle.gex │ │ │ │ │ │ │ ├── 9-point.gex │ │ │ │ │ │ │ ├── bisector01.gex │ │ │ │ │ │ │ ├── napoleon01.gex │ │ │ │ │ │ │ ├── ortho01.gex │ │ │ │ │ │ │ ├── ortho02.gex │ │ │ │ │ │ │ ├── pedal01.gex │ │ │ │ │ │ │ ├── ptolemy01.gex │ │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ │ ├── square01.gex │ │ │ │ │ │ │ ├── steiner01.gex │ │ │ │ │ │ │ └── two-circle.gex │ │ │ │ │ │ ├── simson.gex │ │ │ │ │ │ └── sum3.gex │ │ │ │ │ ├── ruler-compass │ │ │ │ │ ├── 3p.gex │ │ │ │ │ ├── consgex │ │ │ │ │ │ ├── 1957-2.gex │ │ │ │ │ │ ├── 3-parallel.gex │ │ │ │ │ │ ├── 3p.gex │ │ │ │ │ │ ├── A-B.gex │ │ │ │ │ │ ├── Aah.gex │ │ │ │ │ │ ├── PPL.gex │ │ │ │ │ │ ├── ctangent1.gex │ │ │ │ │ │ ├── ctangent2.gex │ │ │ │ │ │ ├── cut.gex │ │ │ │ │ │ ├── hhh.gex │ │ │ │ │ │ ├── htm.gex │ │ │ │ │ │ ├── mmm.gex │ │ │ │ │ │ ├── peri1.gex │ │ │ │ │ │ └── triangle.gex │ │ │ │ │ └── ppl.gex │ │ │ │ │ ├── tp.lsp │ │ │ │ │ └── visual-proofs │ │ │ │ │ ├── Pedal │ │ │ │ │ ├── 2-point-problem.gex │ │ │ │ │ ├── pedal-tirnagle-problem.gex │ │ │ │ │ ├── pedal-triangle.gex │ │ │ │ │ └── schwarz-solution.gex │ │ │ │ │ ├── Shwarz03.gex │ │ │ │ │ ├── area-method │ │ │ │ │ ├── centriod-area-method.gex │ │ │ │ │ ├── centroid-traditional.gex │ │ │ │ │ ├── para-area-method.gex │ │ │ │ │ └── para-traditional.gex │ │ │ │ │ ├── full-angle-proof │ │ │ │ │ ├── 5c-11-11.gex │ │ │ │ │ ├── 5c-11-15.gex │ │ │ │ │ ├── EX001.gex │ │ │ │ │ ├── EX003.gex │ │ │ │ │ ├── EX005.gex │ │ │ │ │ ├── EX006.gex │ │ │ │ │ ├── EX007-sm.gex │ │ │ │ │ ├── EX010-mq.gex │ │ │ │ │ ├── EX011-9pt.gex │ │ │ │ │ ├── EX012.gex │ │ │ │ │ ├── EX013.gex │ │ │ │ │ ├── EX018-2c.gex │ │ │ │ │ └── README-1st.gex │ │ │ │ │ ├── pythagoras.gex │ │ │ │ │ └── traditional-proofs │ │ │ │ │ ├── circle-fig │ │ │ │ │ ├── 3equi-triangle-n.gex │ │ │ │ │ ├── 9-pointn.gex │ │ │ │ │ ├── napoleon01-n.gex │ │ │ │ │ ├── ortho01-n.gex │ │ │ │ │ ├── ortho02-n.gex │ │ │ │ │ ├── pedal0-n.gex │ │ │ │ │ ├── ptolemy01-n.gex │ │ │ │ │ ├── simson-n.gex │ │ │ │ │ ├── square01-n.gex │ │ │ │ │ ├── steiner01-n.gex │ │ │ │ │ └── two-circle-n.gex │ │ │ │ │ └── line-fig │ │ │ │ │ ├── 2equi-triangle.gex │ │ │ │ │ ├── centriod01n.gex │ │ │ │ │ ├── centriod02n.gex │ │ │ │ │ ├── iso-right-triangle-n.gex │ │ │ │ │ ├── iso-triangle01.gex │ │ │ │ │ ├── median02-n.gex │ │ │ │ │ ├── median03-n.gex │ │ │ │ │ ├── median04-n.gex │ │ │ │ │ ├── median05-n.gex │ │ │ │ │ ├── midpoint01-n.gex │ │ │ │ │ ├── orthocenter01-n.gex │ │ │ │ │ ├── para01-n.gex │ │ │ │ │ ├── para02.gex │ │ │ │ │ ├── para03-n.gex │ │ │ │ │ ├── para04.gex │ │ │ │ │ ├── quad01-n.gex │ │ │ │ │ ├── quad02-n.gex │ │ │ │ │ ├── trapzoid01-n.gex │ │ │ │ │ └── trapzoid02-n.gex │ │ │ ├── other │ │ │ │ ├── E075-25-sss.gex │ │ │ │ ├── FIG4.gex │ │ │ │ ├── FIG5.gex │ │ │ │ ├── cy.gex │ │ │ │ ├── fig1.gex │ │ │ │ ├── fig2.gex │ │ │ │ ├── geometry.gex │ │ │ │ ├── morley.gex │ │ │ │ ├── morley1.gex │ │ │ │ └── nevins.gex │ │ │ ├── paper │ │ │ │ ├── 03_Pyth2_BK.gex │ │ │ │ ├── 03_Pyth2_BK1.gex │ │ │ │ ├── Ptolemy's Theorem.gex │ │ │ │ ├── Ptolemy's Theorem2.gex │ │ │ │ ├── Ptolemy's Theorem3.gex │ │ │ │ ├── Thebault │ │ │ │ │ ├── aa.gex │ │ │ │ │ ├── t4.gex │ │ │ │ │ ├── t5.gex │ │ │ │ │ ├── t6.gex │ │ │ │ │ ├── t7.gex │ │ │ │ │ ├── t8.gex │ │ │ │ │ ├── tp5.gex │ │ │ │ │ └── tp6.gex │ │ │ │ ├── aa2.gex │ │ │ │ └── morley4.gex │ │ │ ├── presentation │ │ │ │ └── 1_3q.gex │ │ │ └── unsolved │ │ │ │ ├── 109f.gex │ │ │ │ ├── 65.gex │ │ │ │ ├── 82.gex │ │ │ │ ├── E046-10.gex │ │ │ │ ├── E046-7.gex │ │ │ │ ├── E051-7.gex │ │ │ │ ├── E073-17.gex │ │ │ │ └── E074-24.gex │ │ ├── Rules │ │ │ ├── FULL │ │ │ │ ├── 01.gex │ │ │ │ ├── 02.gex │ │ │ │ ├── 03.gex │ │ │ │ ├── 04.gex │ │ │ │ ├── 05.gex │ │ │ │ ├── 06.gex │ │ │ │ ├── 07.gex │ │ │ │ ├── 08.gex │ │ │ │ ├── 09.gex │ │ │ │ ├── 11.gex │ │ │ │ ├── 12.gex │ │ │ │ ├── 13.gex │ │ │ │ ├── 14.gex │ │ │ │ ├── 15.gex │ │ │ │ ├── 16.gex │ │ │ │ ├── 17.gex │ │ │ │ ├── 18.gex │ │ │ │ ├── 19.gex │ │ │ │ ├── 20.gex │ │ │ │ ├── 21.gex │ │ │ │ ├── 22.gex │ │ │ │ ├── 23.gex │ │ │ │ ├── 24.gex │ │ │ │ ├── 25.gex │ │ │ │ ├── 26.gex │ │ │ │ ├── 27.gex │ │ │ │ ├── 28.gex │ │ │ │ └── 29.gex │ │ │ └── GDD │ │ │ │ ├── 01.gex │ │ │ │ ├── 02.gex │ │ │ │ ├── 03.gex │ │ │ │ ├── 04.gex │ │ │ │ ├── 05.gex │ │ │ │ ├── 06.gex │ │ │ │ ├── 07.gex │ │ │ │ ├── 08.gex │ │ │ │ ├── 09.gex │ │ │ │ ├── 10.gex │ │ │ │ ├── 11.gex │ │ │ │ ├── 12.gex │ │ │ │ ├── 13.gex │ │ │ │ ├── 14.gex │ │ │ │ ├── 15.gex │ │ │ │ ├── 16.gex │ │ │ │ ├── 17.gex │ │ │ │ ├── 18.gex │ │ │ │ ├── 19.gex │ │ │ │ ├── 20.gex │ │ │ │ ├── 21.gex │ │ │ │ ├── 22.gex │ │ │ │ ├── 23.gex │ │ │ │ ├── 24.gex │ │ │ │ ├── 25.gex │ │ │ │ ├── 26.gex │ │ │ │ ├── 27.gex │ │ │ │ ├── 28.gex │ │ │ │ ├── 29.gex │ │ │ │ ├── 30.gex │ │ │ │ ├── 31.gex │ │ │ │ ├── 32.gex │ │ │ │ ├── 33.gex │ │ │ │ ├── 34.gex │ │ │ │ ├── 35.gex │ │ │ │ ├── 36.gex │ │ │ │ ├── 37.gex │ │ │ │ ├── 38.gex │ │ │ │ ├── 39.gex │ │ │ │ ├── 40.gex │ │ │ │ ├── 41.gex │ │ │ │ ├── 42.gex │ │ │ │ └── 43.gex │ │ ├── ex-gao │ │ │ ├── back │ │ │ │ ├── 8point │ │ │ │ ├── CANTOR-1 │ │ │ │ ├── CANTOR-2 │ │ │ │ ├── CANTOR-3 │ │ │ │ ├── CANTOR-4 │ │ │ │ ├── CEVA-4 │ │ │ │ ├── CEVA-S6 │ │ │ │ ├── D238 │ │ │ │ ├── M24_96.gex │ │ │ │ ├── addl │ │ │ │ ├── cantor │ │ │ │ ├── ceva │ │ │ │ ├── ceva-5 │ │ │ │ ├── ceva-f │ │ │ │ ├── ceva3-1 │ │ │ │ ├── ceva3-2 │ │ │ │ ├── ceva3-3 │ │ │ │ ├── ceva4 │ │ │ │ ├── ceva5-1 │ │ │ │ ├── ceva5-2 │ │ │ │ ├── cevan │ │ │ │ ├── exs-base │ │ │ │ │ ├── affine │ │ │ │ │ ├── cent │ │ │ │ │ ├── d-aux │ │ │ │ │ ├── d-ax │ │ │ │ │ ├── d-un │ │ │ │ │ ├── d104 │ │ │ │ │ ├── d123 │ │ │ │ │ ├── d127 │ │ │ │ │ ├── d132 │ │ │ │ │ ├── d133 │ │ │ │ │ ├── d155 │ │ │ │ │ ├── d194 │ │ │ │ │ ├── d65 │ │ │ │ │ ├── d68 │ │ │ │ │ ├── d71 │ │ │ │ │ ├── d94 │ │ │ │ │ ├── ex-aux │ │ │ │ │ ├── f-aux │ │ │ │ │ ├── f-un │ │ │ │ │ ├── f1 │ │ │ │ │ ├── f10 │ │ │ │ │ ├── f100 │ │ │ │ │ ├── f101 │ │ │ │ │ ├── f102 │ │ │ │ │ ├── f103 │ │ │ │ │ ├── f103-1 │ │ │ │ │ ├── f104 │ │ │ │ │ ├── f105 │ │ │ │ │ ├── f106 │ │ │ │ │ ├── f107 │ │ │ │ │ ├── f108 │ │ │ │ │ ├── f109 │ │ │ │ │ ├── f11 │ │ │ │ │ ├── f110 │ │ │ │ │ ├── f12 │ │ │ │ │ ├── f13 │ │ │ │ │ ├── f14 │ │ │ │ │ ├── f15 │ │ │ │ │ ├── f16 │ │ │ │ │ ├── f17 │ │ │ │ │ ├── f18 │ │ │ │ │ ├── f19 │ │ │ │ │ ├── f2 │ │ │ │ │ ├── f20 │ │ │ │ │ ├── f21 │ │ │ │ │ ├── f22 │ │ │ │ │ ├── f23 │ │ │ │ │ ├── f24 │ │ │ │ │ ├── f26 │ │ │ │ │ ├── f27 │ │ │ │ │ ├── f28 │ │ │ │ │ ├── f29 │ │ │ │ │ ├── f3 │ │ │ │ │ ├── f30 │ │ │ │ │ ├── f31 │ │ │ │ │ ├── f32 │ │ │ │ │ ├── f33 │ │ │ │ │ ├── f34 │ │ │ │ │ ├── f35 │ │ │ │ │ ├── f36 │ │ │ │ │ ├── f37 │ │ │ │ │ ├── f38 │ │ │ │ │ ├── f39 │ │ │ │ │ ├── f4 │ │ │ │ │ ├── f40 │ │ │ │ │ ├── f41 │ │ │ │ │ ├── f42 │ │ │ │ │ ├── f43 │ │ │ │ │ ├── f44 │ │ │ │ │ ├── f46 │ │ │ │ │ ├── f47 │ │ │ │ │ ├── f48 │ │ │ │ │ ├── f49 │ │ │ │ │ ├── f5 │ │ │ │ │ ├── f50 │ │ │ │ │ ├── f51 │ │ │ │ │ ├── f52 │ │ │ │ │ ├── f53 │ │ │ │ │ ├── f54 │ │ │ │ │ ├── f55 │ │ │ │ │ ├── f56 │ │ │ │ │ ├── f57 │ │ │ │ │ ├── f58 │ │ │ │ │ ├── f59 │ │ │ │ │ ├── f6 │ │ │ │ │ ├── f60 │ │ │ │ │ ├── f61 │ │ │ │ │ ├── f63 │ │ │ │ │ ├── f64 │ │ │ │ │ ├── f65 │ │ │ │ │ ├── f66 │ │ │ │ │ ├── f67 │ │ │ │ │ ├── f68 │ │ │ │ │ ├── f69 │ │ │ │ │ ├── f7 │ │ │ │ │ ├── f70 │ │ │ │ │ ├── f71 │ │ │ │ │ ├── f72 │ │ │ │ │ ├── f73 │ │ │ │ │ ├── f74 │ │ │ │ │ ├── f75 │ │ │ │ │ ├── f76 │ │ │ │ │ ├── f77 │ │ │ │ │ ├── f78 │ │ │ │ │ ├── f78.r │ │ │ │ │ ├── f79 │ │ │ │ │ ├── f8 │ │ │ │ │ ├── f80 │ │ │ │ │ ├── f81 │ │ │ │ │ ├── f82 │ │ │ │ │ ├── f84 │ │ │ │ │ ├── f85 │ │ │ │ │ ├── f86 │ │ │ │ │ ├── f88 │ │ │ │ │ ├── f89 │ │ │ │ │ ├── f9 │ │ │ │ │ ├── f90 │ │ │ │ │ ├── f94 │ │ │ │ │ ├── f95 │ │ │ │ │ ├── f96 │ │ │ │ │ ├── f96-1 │ │ │ │ │ ├── f97 │ │ │ │ │ ├── f97-1 │ │ │ │ │ ├── f98 │ │ │ │ │ ├── f99 │ │ │ │ │ ├── m-aux │ │ │ │ │ ├── m-un │ │ │ │ │ ├── m12-2 │ │ │ │ │ ├── m134-1 │ │ │ │ │ ├── m134-2 │ │ │ │ │ ├── m135-3 │ │ │ │ │ ├── m137-6 │ │ │ │ │ ├── m138-10 │ │ │ │ │ ├── m139-9 │ │ │ │ │ ├── m14-3 │ │ │ │ │ ├── m142-12 │ │ │ │ │ ├── m142-12-1 │ │ │ │ │ ├── m142-12-2 │ │ │ │ │ ├── m142-12-3 │ │ │ │ │ ├── m142-12.t │ │ │ │ │ ├── m143-13 │ │ │ │ │ ├── m144-14 │ │ │ │ │ ├── m145-15 │ │ │ │ │ ├── m146-17 │ │ │ │ │ ├── m147-3 │ │ │ │ │ ├── m148-6 │ │ │ │ │ ├── m148-8 │ │ │ │ │ ├── m148-9 │ │ │ │ │ ├── m15-4 │ │ │ │ │ ├── m15-4-1 │ │ │ │ │ ├── m3-2 │ │ │ │ │ ├── m3-2-1 │ │ │ │ │ ├── m33-1 │ │ │ │ │ ├── m33-2 │ │ │ │ │ ├── m35-9 │ │ │ │ │ ├── m39-1 │ │ │ │ │ ├── m39_1 │ │ │ │ │ ├── m42-1 │ │ │ │ │ ├── m42-2 │ │ │ │ │ ├── m43-4 │ │ │ │ │ ├── m51-13 │ │ │ │ │ ├── m55-17 │ │ │ │ │ ├── m55-18 │ │ │ │ │ ├── ne1 │ │ │ │ │ ├── ne2 │ │ │ │ │ ├── ne3 │ │ │ │ │ ├── ne4 │ │ │ │ │ ├── ne5 │ │ │ │ │ ├── o94 │ │ │ │ │ ├── o95 │ │ │ │ │ ├── o951 │ │ │ │ │ ├── stime │ │ │ │ │ ├── trap1 │ │ │ │ │ ├── trap2 │ │ │ │ │ ├── trap3 │ │ │ │ │ ├── trap4 │ │ │ │ │ ├── y-aux │ │ │ │ │ ├── y-un │ │ │ │ │ ├── y12-2 │ │ │ │ │ ├── y13-3 │ │ │ │ │ ├── y14-4 │ │ │ │ │ ├── y16-7 │ │ │ │ │ ├── y17-8 │ │ │ │ │ ├── y17-9 │ │ │ │ │ ├── y20-11 │ │ │ │ │ ├── y21-1 │ │ │ │ │ ├── y28-3 │ │ │ │ │ ├── y30-5 │ │ │ │ │ ├── y32-8 │ │ │ │ │ ├── y35-9 │ │ │ │ │ ├── y36-15 │ │ │ │ │ ├── y36-16 │ │ │ │ │ ├── y37-19 │ │ │ │ │ ├── y6-1 │ │ │ │ │ ├── y70-9 │ │ │ │ │ └── y9 │ │ │ │ ├── exs-book │ │ │ │ │ ├── aline │ │ │ │ │ ├── ch2 │ │ │ │ │ ├── ch3 │ │ │ │ │ ├── ch5 │ │ │ │ │ ├── ch62 │ │ │ │ │ ├── ch63 │ │ │ │ │ ├── ch64 │ │ │ │ │ ├── ch65 │ │ │ │ │ └── full │ │ │ │ ├── exs-cons │ │ │ │ │ ├── ams1 │ │ │ │ │ ├── ang │ │ │ │ │ ├── brianch │ │ │ │ │ ├── but │ │ │ │ │ ├── but1 │ │ │ │ │ ├── c154 │ │ │ │ │ ├── c154i │ │ │ │ │ ├── cent │ │ │ │ │ ├── des1 │ │ │ │ │ ├── desarg │ │ │ │ │ ├── f19-1 │ │ │ │ │ ├── fbach │ │ │ │ │ ├── fbach1 │ │ │ │ │ ├── fbach3 │ │ │ │ │ ├── gauss │ │ │ │ │ ├── gauss-c │ │ │ │ │ ├── gauss-p │ │ │ │ │ ├── kirkman │ │ │ │ │ ├── miq │ │ │ │ │ ├── miq41 │ │ │ │ │ ├── miq41i │ │ │ │ │ ├── miq43 │ │ │ │ │ ├── miq45 │ │ │ │ │ ├── new │ │ │ │ │ ├── orth │ │ │ │ │ ├── p3 │ │ │ │ │ ├── pappus │ │ │ │ │ ├── pappus-p │ │ │ │ │ ├── pappus1 │ │ │ │ │ ├── pappus2 │ │ │ │ │ ├── para │ │ │ │ │ ├── pas-con │ │ │ │ │ ├── pascal │ │ │ │ │ ├── simons │ │ │ │ │ ├── sq │ │ │ │ │ └── steiner │ │ │ │ ├── exs-exam │ │ │ │ │ ├── affine │ │ │ │ │ ├── brahmagupta │ │ │ │ │ ├── butterfly │ │ │ │ │ ├── butterfly-ext1 │ │ │ │ │ ├── butterfly-ext2 │ │ │ │ │ ├── butterfly4 │ │ │ │ │ ├── centroid │ │ │ │ │ ├── centroid4 │ │ │ │ │ ├── circle1 │ │ │ │ │ ├── circle2 │ │ │ │ │ ├── circum-ratio │ │ │ │ │ ├── desarge │ │ │ │ │ ├── echols │ │ │ │ │ ├── equalateral │ │ │ │ │ ├── equalateral1 │ │ │ │ │ ├── equalateral2 │ │ │ │ │ ├── euler-line │ │ │ │ │ ├── feuerbach │ │ │ │ │ ├── foot-angle │ │ │ │ │ ├── foot-cent │ │ │ │ │ ├── formula1 │ │ │ │ │ ├── gauss-line │ │ │ │ │ ├── harmonic-proj │ │ │ │ │ ├── harmonic-set │ │ │ │ │ ├── incenter-harm │ │ │ │ │ ├── inversion1 │ │ │ │ │ ├── inversion2 │ │ │ │ │ ├── kirkman │ │ │ │ │ ├── menelaus │ │ │ │ │ ├── miquel_circle │ │ │ │ │ ├── miquel_point │ │ │ │ │ ├── miquel_theorem1 │ │ │ │ │ ├── miquel_theorem2 │ │ │ │ │ ├── napoleon │ │ │ │ │ ├── nehring │ │ │ │ │ ├── olympiad78_4 │ │ │ │ │ ├── olympiad84_4 │ │ │ │ │ ├── orth-dual │ │ │ │ │ ├── orthocenter │ │ │ │ │ ├── pappus │ │ │ │ │ ├── pappus-point │ │ │ │ │ ├── parallelogram │ │ │ │ │ ├── parallelogram1 │ │ │ │ │ ├── parallelogram2 │ │ │ │ │ ├── pascal │ │ │ │ │ ├── pascal-conic │ │ │ │ │ ├── pascal-general │ │ │ │ │ ├── pascal-on-circle │ │ │ │ │ ├── simons │ │ │ │ │ ├── square-vector1 │ │ │ │ │ ├── square-vector2 │ │ │ │ │ ├── square-vector3 │ │ │ │ │ ├── square1 │ │ │ │ │ ├── square4 │ │ │ │ │ ├── steiner │ │ │ │ │ ├── t.c │ │ │ │ │ ├── trapezoid │ │ │ │ │ └── trilinear │ │ │ │ ├── f91 │ │ │ │ ├── f92 │ │ │ │ ├── f93 │ │ │ │ ├── fig-book │ │ │ │ │ ├── A-100 │ │ │ │ │ ├── A-106 │ │ │ │ │ ├── A-107 │ │ │ │ │ ├── A-108 │ │ │ │ │ ├── A-116 │ │ │ │ │ ├── A-120 │ │ │ │ │ ├── A-175 │ │ │ │ │ ├── A-177 │ │ │ │ │ ├── A-179 │ │ │ │ │ ├── A-184 │ │ │ │ │ ├── A-192 │ │ │ │ │ ├── A-203-1 │ │ │ │ │ ├── A-207 │ │ │ │ │ ├── A-215 │ │ │ │ │ ├── A-240 │ │ │ │ │ ├── A-244 │ │ │ │ │ ├── A-253 │ │ │ │ │ ├── A-296 │ │ │ │ │ ├── A-321 │ │ │ │ │ ├── A-359 │ │ │ │ │ ├── A-360 │ │ │ │ │ ├── A-373 │ │ │ │ │ ├── A-412 │ │ │ │ │ ├── A-73B │ │ │ │ │ ├── A-87 │ │ │ │ │ ├── A-91 │ │ │ │ │ ├── A-93 │ │ │ │ │ ├── A-97 │ │ │ │ │ ├── A-97-1 │ │ │ │ │ ├── A101-1 │ │ │ │ │ ├── A118-49 │ │ │ │ │ ├── A127-3 │ │ │ │ │ ├── A171-6 │ │ │ │ │ ├── A171-9 │ │ │ │ │ ├── A174-2 │ │ │ │ │ ├── A183-8-A │ │ │ │ │ ├── A193-9 │ │ │ │ │ ├── A194-6 │ │ │ │ │ ├── A242-8 │ │ │ │ │ ├── A67-1 │ │ │ │ │ ├── A67-4 │ │ │ │ │ ├── A68-10 │ │ │ │ │ ├── A68-9 │ │ │ │ │ ├── A69-5 │ │ │ │ │ ├── A70-11 │ │ │ │ │ ├── A71-1 │ │ │ │ │ ├── A96-1 │ │ │ │ │ ├── BTF1 │ │ │ │ │ ├── BTF2 │ │ │ │ │ ├── BTF3 │ │ │ │ │ ├── C24-13 │ │ │ │ │ ├── C26-16 │ │ │ │ │ ├── C26-17 │ │ │ │ │ ├── C26-18 │ │ │ │ │ ├── CI1 │ │ │ │ │ ├── CI1% │ │ │ │ │ ├── CI2 │ │ │ │ │ ├── CI3 │ │ │ │ │ ├── CON9-32 │ │ │ │ │ ├── CON9-33 │ │ │ │ │ ├── CR5 │ │ │ │ │ ├── D160 │ │ │ │ │ ├── D161 │ │ │ │ │ ├── D190 │ │ │ │ │ ├── D197 │ │ │ │ │ ├── D197-1 │ │ │ │ │ ├── D204 │ │ │ │ │ ├── D204-1 │ │ │ │ │ ├── D208 │ │ │ │ │ ├── D208-1 │ │ │ │ │ ├── D208-2 │ │ │ │ │ ├── D208-3 │ │ │ │ │ ├── D211 │ │ │ │ │ ├── D216 │ │ │ │ │ ├── D217 │ │ │ │ │ ├── D222 │ │ │ │ │ ├── D223 │ │ │ │ │ ├── D225 │ │ │ │ │ ├── D229 │ │ │ │ │ ├── D230 │ │ │ │ │ ├── D234 │ │ │ │ │ ├── D235 │ │ │ │ │ ├── D237 │ │ │ │ │ ├── D237-1 │ │ │ │ │ ├── D239 │ │ │ │ │ ├── D243 │ │ │ │ │ ├── D252 │ │ │ │ │ ├── E-1 │ │ │ │ │ ├── E-2 │ │ │ │ │ ├── E-2124 │ │ │ │ │ ├── F140 │ │ │ │ │ ├── F141 │ │ │ │ │ ├── G65 │ │ │ │ │ ├── LEIS │ │ │ │ │ ├── NEWTON │ │ │ │ │ ├── O59-5 │ │ │ │ │ ├── O87-2 │ │ │ │ │ ├── PE-G │ │ │ │ │ ├── PE-H │ │ │ │ │ ├── PE-I │ │ │ │ │ ├── PE-O │ │ │ │ │ ├── PEDAL │ │ │ │ │ ├── TANGENT │ │ │ │ │ ├── WG12 │ │ │ │ │ ├── WG12-1 │ │ │ │ │ ├── WG12-2 │ │ │ │ │ ├── a-tr │ │ │ │ │ ├── a4-r │ │ │ │ │ ├── ac-dis │ │ │ │ │ ├── addp │ │ │ │ │ ├── aff2 │ │ │ │ │ ├── aff3 │ │ │ │ │ ├── aff5 │ │ │ │ │ ├── aff6 │ │ │ │ │ ├── aff8 │ │ │ │ │ ├── amm2 │ │ │ │ │ ├── amm3 │ │ │ │ │ ├── aream │ │ │ │ │ ├── b1 │ │ │ │ │ ├── b10 │ │ │ │ │ ├── b11 │ │ │ │ │ ├── b2 │ │ │ │ │ ├── b3 │ │ │ │ │ ├── b5 │ │ │ │ │ ├── b6 │ │ │ │ │ ├── b7 │ │ │ │ │ ├── b9 │ │ │ │ │ ├── bb2 │ │ │ │ │ ├── but │ │ │ │ │ ├── c12 │ │ │ │ │ ├── ca-a │ │ │ │ │ ├── ca-p │ │ │ │ │ ├── cc │ │ │ │ │ ├── cc-r │ │ │ │ │ ├── chou │ │ │ │ │ ├── cir │ │ │ │ │ ├── cir1 │ │ │ │ │ ├── cir2 │ │ │ │ │ ├── cir3 │ │ │ │ │ ├── cir4 │ │ │ │ │ ├── cir5 │ │ │ │ │ ├── con8-3 │ │ │ │ │ ├── e41-1 │ │ │ │ │ ├── e41-3 │ │ │ │ │ ├── e41-4 │ │ │ │ │ ├── e41-5 │ │ │ │ │ ├── e41-6 │ │ │ │ │ ├── e41-7 │ │ │ │ │ ├── e42-1 │ │ │ │ │ ├── e42-4 │ │ │ │ │ ├── e43-1 │ │ │ │ │ ├── e43-10 │ │ │ │ │ ├── e43-11 │ │ │ │ │ ├── e43-12 │ │ │ │ │ ├── e43-2 │ │ │ │ │ ├── e43-22 │ │ │ │ │ ├── e43-3 │ │ │ │ │ ├── e43-4 │ │ │ │ │ ├── e43-5 │ │ │ │ │ ├── e43-6 │ │ │ │ │ ├── e43-7 │ │ │ │ │ ├── e43-8 │ │ │ │ │ ├── e44-1 │ │ │ │ │ ├── e44-2 │ │ │ │ │ ├── e44-3 │ │ │ │ │ ├── e45-2 │ │ │ │ │ ├── ex-31 │ │ │ │ │ ├── ex3-1 │ │ │ │ │ ├── f1-1 │ │ │ │ │ ├── f1-2 │ │ │ │ │ ├── f1-3 │ │ │ │ │ ├── f10-2 │ │ │ │ │ ├── f12-1 │ │ │ │ │ ├── f12-10 │ │ │ │ │ ├── f12-11 │ │ │ │ │ ├── f12-12 │ │ │ │ │ ├── f12-13 │ │ │ │ │ ├── f12-2 │ │ │ │ │ ├── f12-3 │ │ │ │ │ ├── f12-4 │ │ │ │ │ ├── f12-5 │ │ │ │ │ ├── f12-6 │ │ │ │ │ ├── f12-7 │ │ │ │ │ ├── f12-8 │ │ │ │ │ ├── f12-9 │ │ │ │ │ ├── f13-1 │ │ │ │ │ ├── f13-4 │ │ │ │ │ ├── f14-1 │ │ │ │ │ ├── f14-2 │ │ │ │ │ ├── f14-3 │ │ │ │ │ ├── f15-14 │ │ │ │ │ ├── f16-1 │ │ │ │ │ ├── f16-2 │ │ │ │ │ ├── f16-7 │ │ │ │ │ ├── f16-8 │ │ │ │ │ ├── f16-9 │ │ │ │ │ ├── f17-1 │ │ │ │ │ ├── f17-2 │ │ │ │ │ ├── f17-3 │ │ │ │ │ ├── f17-4 │ │ │ │ │ ├── f17-5 │ │ │ │ │ ├── f17-51 │ │ │ │ │ ├── f17-6 │ │ │ │ │ ├── f17-7 │ │ │ │ │ ├── f17-8 │ │ │ │ │ ├── f17-9 │ │ │ │ │ ├── f172 │ │ │ │ │ ├── f18-1 │ │ │ │ │ ├── f18-2 │ │ │ │ │ ├── f18-3 │ │ │ │ │ ├── f18-4 │ │ │ │ │ ├── f18-5 │ │ │ │ │ ├── f19-1 │ │ │ │ │ ├── f19-2 │ │ │ │ │ ├── f19-3 │ │ │ │ │ ├── f19-4 │ │ │ │ │ ├── f2-1 │ │ │ │ │ ├── f2-2 │ │ │ │ │ ├── f2-3 │ │ │ │ │ ├── f2-4 │ │ │ │ │ ├── f2-5 │ │ │ │ │ ├── f2-6 │ │ │ │ │ ├── f3-2 │ │ │ │ │ ├── f3-4 │ │ │ │ │ ├── f3-5 │ │ │ │ │ ├── f4-1 │ │ │ │ │ ├── f5-1 │ │ │ │ │ ├── f5-5 │ │ │ │ │ ├── f7-1 │ │ │ │ │ ├── fa-7 │ │ │ │ │ ├── fa-8 │ │ │ │ │ ├── fano │ │ │ │ │ ├── fd3 │ │ │ │ │ ├── fd4 │ │ │ │ │ ├── fu0 │ │ │ │ │ ├── fu81 │ │ │ │ │ ├── fu82 │ │ │ │ │ ├── fu83 │ │ │ │ │ ├── fu85 │ │ │ │ │ ├── full-3 │ │ │ │ │ ├── g-tr │ │ │ │ │ ├── g-tt │ │ │ │ │ ├── gao │ │ │ │ │ ├── i-ar │ │ │ │ │ ├── lc-r │ │ │ │ │ ├── mm-2 │ │ │ │ │ ├── monge │ │ │ │ │ ├── nevins1 │ │ │ │ │ ├── new │ │ │ │ │ ├── new% │ │ │ │ │ ├── new1 │ │ │ │ │ ├── o65-3 │ │ │ │ │ ├── o65-5 │ │ │ │ │ ├── o78-1 │ │ │ │ │ ├── o85-5 │ │ │ │ │ ├── p-pipe │ │ │ │ │ ├── p0 │ │ │ │ │ ├── p3 │ │ │ │ │ ├── pyth │ │ │ │ │ ├── qua │ │ │ │ │ ├── r-r │ │ │ │ │ ├── redu1 │ │ │ │ │ ├── ru82 │ │ │ │ │ ├── s1 │ │ │ │ │ ├── s10 │ │ │ │ │ ├── s2 │ │ │ │ │ ├── s5 │ │ │ │ │ ├── s6 │ │ │ │ │ ├── vc-dis │ │ │ │ │ └── volm │ │ │ │ ├── figure │ │ │ │ │ ├── butterfly │ │ │ │ │ ├── centroid │ │ │ │ │ ├── desarge │ │ │ │ │ ├── orth │ │ │ │ │ ├── para │ │ │ │ │ ├── sim │ │ │ │ │ ├── simons │ │ │ │ │ ├── y13-3 │ │ │ │ │ ├── y14-4 │ │ │ │ │ ├── y16-7 │ │ │ │ │ ├── y17-8 │ │ │ │ │ ├── y17-9 │ │ │ │ │ ├── y20-11 │ │ │ │ │ ├── y21-1 │ │ │ │ │ ├── y28-3 │ │ │ │ │ ├── y30-5 │ │ │ │ │ ├── y32-8 │ │ │ │ │ └── y35-9 │ │ │ │ ├── illegal │ │ │ │ │ ├── comment.txt │ │ │ │ │ ├── f45 │ │ │ │ │ ├── f62 │ │ │ │ │ └── m9-8 │ │ │ │ ├── miq_th1.gex │ │ │ │ ├── miq_th2.gex │ │ │ │ ├── nine-point-circle │ │ │ │ ├── ninec │ │ │ │ ├── sim.gex │ │ │ │ ├── square2 │ │ │ │ └── square3 │ │ │ ├── ex160 │ │ │ │ ├── 4 │ │ │ │ │ ├── 001.gex │ │ │ │ │ ├── 001a.gex │ │ │ │ │ ├── 002.gex │ │ │ │ │ ├── 003.gex │ │ │ │ │ ├── 004.gex │ │ │ │ │ ├── 005.gex │ │ │ │ │ ├── 006.gex │ │ │ │ │ ├── 010.gex │ │ │ │ │ ├── 0101f-ratiogex.gex │ │ │ │ │ ├── 36.gex │ │ │ │ │ ├── 57.gex │ │ │ │ │ ├── TRA.gex │ │ │ │ │ ├── e01a.gex │ │ │ │ │ ├── e02f_ratio.gex │ │ │ │ │ ├── e03a.gex │ │ │ │ │ ├── e03a_lratio.gex │ │ │ │ │ ├── e04.gex │ │ │ │ │ ├── e04f.gex │ │ │ │ │ ├── e06.gex │ │ │ │ │ ├── e08.gex │ │ │ │ │ ├── e09.gex │ │ │ │ │ ├── e10.gex │ │ │ │ │ ├── e11.gex │ │ │ │ │ ├── e11aux.gex │ │ │ │ │ ├── e12.gex │ │ │ │ │ ├── e13.gex │ │ │ │ │ ├── e14a.gex │ │ │ │ │ ├── e16_ratio.gex │ │ │ │ │ ├── e16f.gex │ │ │ │ │ ├── e17_a.gex │ │ │ │ │ ├── e17f.gex │ │ │ │ │ ├── e18.gex │ │ │ │ │ ├── e19.gex │ │ │ │ │ ├── e20_im.gex │ │ │ │ │ ├── e24.gex │ │ │ │ │ ├── e26.gex │ │ │ │ │ ├── e58.gex │ │ │ │ │ ├── e59.gex │ │ │ │ │ └── e62.gex │ │ │ │ ├── 5 │ │ │ │ │ ├── 001.gex │ │ │ │ │ ├── 003-ratio.gex │ │ │ │ │ ├── 009.gex │ │ │ │ │ ├── 009f.gex │ │ │ │ │ ├── 010f.gex │ │ │ │ │ ├── 012-im.1gex.gex │ │ │ │ │ ├── 012-im.gex │ │ │ │ │ └── 014.gex │ │ │ │ ├── 002.gex │ │ │ │ ├── 002a.gex │ │ │ │ ├── 003.gex │ │ │ │ ├── 003i.gex │ │ │ │ ├── 004.gex │ │ │ │ ├── 004a.gex │ │ │ │ ├── 005.gex │ │ │ │ ├── 006.gex │ │ │ │ ├── 007.gex │ │ │ │ ├── 008.gex │ │ │ │ ├── 062.gex │ │ │ │ ├── 100.gex │ │ │ │ ├── 102A.gex │ │ │ │ ├── 103.gex │ │ │ │ ├── 104.gex │ │ │ │ ├── 202.gex │ │ │ │ ├── 202a.gex │ │ │ │ ├── 203.gex │ │ │ │ ├── 204.gex │ │ │ │ ├── 205.gex │ │ │ │ ├── 206.gex │ │ │ │ ├── 207.gex │ │ │ │ ├── 208.gex │ │ │ │ ├── cyclic │ │ │ │ │ ├── 001.gex │ │ │ │ │ ├── 001im.gex │ │ │ │ │ ├── 002.gex │ │ │ │ │ └── 003.gex │ │ │ │ ├── e102.gex │ │ │ │ ├── e103.gex │ │ │ │ ├── e105.gex │ │ │ │ ├── e105_aux.gex │ │ │ │ ├── e120.gex │ │ │ │ ├── e121.gex │ │ │ │ ├── e122.gex │ │ │ │ ├── e123.gex │ │ │ │ ├── e124.gex │ │ │ │ ├── e201a.gex │ │ │ │ ├── e201f.gex │ │ │ │ ├── e202.gex │ │ │ │ ├── e202a.gex │ │ │ │ ├── e203.gex │ │ │ │ ├── e205.gex │ │ │ │ ├── e207.gex │ │ │ │ ├── e208.gex │ │ │ │ ├── e209a.gex │ │ │ │ ├── e210f.gex │ │ │ │ ├── e211.gex │ │ │ │ ├── e212f.gex │ │ │ │ ├── e213.gex │ │ │ │ ├── e215.gex │ │ │ │ ├── e216.gex │ │ │ │ ├── e219.gex │ │ │ │ ├── e221.gex │ │ │ │ ├── e222.gex │ │ │ │ ├── e224.gex │ │ │ │ ├── e224a.gex │ │ │ │ └── nangle │ │ │ │ │ └── e18.gex │ │ │ ├── exs-base │ │ │ │ ├── affine │ │ │ │ ├── affine.tex │ │ │ │ ├── cent │ │ │ │ ├── d-aux │ │ │ │ ├── d-ax │ │ │ │ ├── d-un │ │ │ │ ├── d104 │ │ │ │ ├── d123 │ │ │ │ ├── d127 │ │ │ │ ├── d132 │ │ │ │ ├── d133 │ │ │ │ ├── d155 │ │ │ │ ├── d194 │ │ │ │ ├── d65 │ │ │ │ ├── d68 │ │ │ │ ├── d71 │ │ │ │ ├── d94 │ │ │ │ ├── ex-aux │ │ │ │ ├── example │ │ │ │ ├── f-aux │ │ │ │ ├── f-un │ │ │ │ ├── f1 │ │ │ │ ├── f10 │ │ │ │ ├── f100 │ │ │ │ ├── f101 │ │ │ │ ├── f102 │ │ │ │ ├── f103 │ │ │ │ ├── f103-1 │ │ │ │ ├── f104 │ │ │ │ ├── f105 │ │ │ │ ├── f106 │ │ │ │ ├── f107 │ │ │ │ ├── f108 │ │ │ │ ├── f109 │ │ │ │ ├── f11 │ │ │ │ ├── f110 │ │ │ │ ├── f12 │ │ │ │ ├── f13 │ │ │ │ ├── f14 │ │ │ │ ├── f15 │ │ │ │ ├── f16 │ │ │ │ ├── f16.tex │ │ │ │ ├── f17 │ │ │ │ ├── f17.tex │ │ │ │ ├── f18 │ │ │ │ ├── f19 │ │ │ │ ├── f19.tex │ │ │ │ ├── f2 │ │ │ │ ├── f20 │ │ │ │ ├── f21 │ │ │ │ ├── f22 │ │ │ │ ├── f23 │ │ │ │ ├── f24 │ │ │ │ ├── f26 │ │ │ │ ├── f26.tex │ │ │ │ ├── f27 │ │ │ │ ├── f27.tex │ │ │ │ ├── f28 │ │ │ │ ├── f29 │ │ │ │ ├── f3 │ │ │ │ ├── f30 │ │ │ │ ├── f30.tex │ │ │ │ ├── f31 │ │ │ │ ├── f32 │ │ │ │ ├── f33 │ │ │ │ ├── f34 │ │ │ │ ├── f35 │ │ │ │ ├── f36 │ │ │ │ ├── f37 │ │ │ │ ├── f38 │ │ │ │ ├── f39 │ │ │ │ ├── f4 │ │ │ │ ├── f40 │ │ │ │ ├── f41 │ │ │ │ ├── f42 │ │ │ │ ├── f43 │ │ │ │ ├── f44 │ │ │ │ ├── f45 │ │ │ │ ├── f46 │ │ │ │ ├── f47 │ │ │ │ ├── f48 │ │ │ │ ├── f49 │ │ │ │ ├── f5 │ │ │ │ ├── f50 │ │ │ │ ├── f51 │ │ │ │ ├── f52 │ │ │ │ ├── f53 │ │ │ │ ├── f54 │ │ │ │ ├── f55 │ │ │ │ ├── f56 │ │ │ │ ├── f57 │ │ │ │ ├── f58 │ │ │ │ ├── f59 │ │ │ │ ├── f6 │ │ │ │ ├── f60 │ │ │ │ ├── f61 │ │ │ │ ├── f62 │ │ │ │ ├── f63 │ │ │ │ ├── f64 │ │ │ │ ├── f65 │ │ │ │ ├── f66 │ │ │ │ ├── f67 │ │ │ │ ├── f68 │ │ │ │ ├── f69 │ │ │ │ ├── f7 │ │ │ │ ├── f70 │ │ │ │ ├── f71 │ │ │ │ ├── f72 │ │ │ │ ├── f73 │ │ │ │ ├── f74 │ │ │ │ ├── f75 │ │ │ │ ├── f76 │ │ │ │ ├── f77 │ │ │ │ ├── f78 │ │ │ │ ├── f78.r │ │ │ │ ├── f79 │ │ │ │ ├── f8 │ │ │ │ ├── f80 │ │ │ │ ├── f81 │ │ │ │ ├── f82 │ │ │ │ ├── f84 │ │ │ │ ├── f85 │ │ │ │ ├── f86 │ │ │ │ ├── f88 │ │ │ │ ├── f89 │ │ │ │ ├── f9 │ │ │ │ ├── f90 │ │ │ │ ├── f91 │ │ │ │ ├── f92 │ │ │ │ ├── f93 │ │ │ │ ├── f94 │ │ │ │ ├── f95 │ │ │ │ ├── f96 │ │ │ │ ├── f96-1 │ │ │ │ ├── f97 │ │ │ │ ├── f97-1 │ │ │ │ ├── f98 │ │ │ │ ├── f99 │ │ │ │ ├── m-aux │ │ │ │ ├── m-un │ │ │ │ ├── m12-2 │ │ │ │ ├── m134-1 │ │ │ │ ├── m134-2 │ │ │ │ ├── m135-3 │ │ │ │ ├── m137-6 │ │ │ │ ├── m138-10 │ │ │ │ ├── m139-9 │ │ │ │ ├── m14-3 │ │ │ │ ├── m140-10 │ │ │ │ ├── m140-10.r1 │ │ │ │ ├── m140-10.t │ │ │ │ ├── m140-10.tex │ │ │ │ ├── m142-12 │ │ │ │ ├── m142-12-1 │ │ │ │ ├── m142-12-2 │ │ │ │ ├── m142-12-3 │ │ │ │ ├── m142-12.t │ │ │ │ ├── m143-13 │ │ │ │ ├── m144-14 │ │ │ │ ├── m145-15 │ │ │ │ ├── m146-17 │ │ │ │ ├── m147-3 │ │ │ │ ├── m148-6 │ │ │ │ ├── m148-8 │ │ │ │ ├── m148-9 │ │ │ │ ├── m15-4 │ │ │ │ ├── m15-4-1 │ │ │ │ ├── m3-2 │ │ │ │ ├── m3-2-1 │ │ │ │ ├── m33-1 │ │ │ │ ├── m33-2 │ │ │ │ ├── m35-9 │ │ │ │ ├── m39-1 │ │ │ │ ├── m39_1 │ │ │ │ ├── m42-1 │ │ │ │ ├── m42-2 │ │ │ │ ├── m43-4 │ │ │ │ ├── m51-13 │ │ │ │ ├── m55-17 │ │ │ │ ├── m55-18 │ │ │ │ ├── m9-8 │ │ │ │ ├── ne1 │ │ │ │ ├── ne2 │ │ │ │ ├── ne3 │ │ │ │ ├── ne4 │ │ │ │ ├── ne5 │ │ │ │ ├── o94 │ │ │ │ ├── o95 │ │ │ │ ├── o951 │ │ │ │ ├── stime │ │ │ │ ├── trap1 │ │ │ │ ├── trap2 │ │ │ │ ├── trap3 │ │ │ │ ├── trap4 │ │ │ │ ├── y-aux │ │ │ │ ├── y-un │ │ │ │ ├── y12-2 │ │ │ │ ├── y13-3 │ │ │ │ ├── y14-4 │ │ │ │ ├── y16-7 │ │ │ │ ├── y17-8 │ │ │ │ ├── y17-9 │ │ │ │ ├── y20-11 │ │ │ │ ├── y21-1 │ │ │ │ ├── y28-3 │ │ │ │ ├── y30-5 │ │ │ │ ├── y32-8 │ │ │ │ ├── y35-9 │ │ │ │ ├── y36-15 │ │ │ │ ├── y36-16 │ │ │ │ ├── y37-19 │ │ │ │ ├── y6-1 │ │ │ │ ├── y70-9 │ │ │ │ └── y9 │ │ │ └── gao │ │ │ │ ├── C │ │ │ │ ├── C100.gex │ │ │ │ ├── C101.gex │ │ │ │ ├── C102.gex │ │ │ │ ├── C103.gex │ │ │ │ ├── C104.gex │ │ │ │ ├── C105.gex │ │ │ │ ├── C106.gex │ │ │ │ ├── C107-1.gex │ │ │ │ ├── C107-2.gex │ │ │ │ ├── C107.gex │ │ │ │ ├── C108.gex │ │ │ │ ├── C109.gex │ │ │ │ ├── C110.gex │ │ │ │ ├── C111.gex │ │ │ │ └── C112.gex │ │ │ │ ├── L │ │ │ │ ├── L022-1.gex │ │ │ │ ├── L023-2.gex │ │ │ │ ├── L025-5.gex │ │ │ │ ├── L043-6.gex │ │ │ │ ├── L044-8.gex │ │ │ │ ├── L181-4.gex │ │ │ │ ├── L182-5.gex │ │ │ │ ├── L182-6.gex │ │ │ │ ├── L183-11.gex │ │ │ │ ├── L183-7.gex │ │ │ │ ├── L189-1.gex │ │ │ │ ├── L189-2.gex │ │ │ │ ├── L190-7.gex │ │ │ │ ├── L196-3-1.gex │ │ │ │ ├── L196-3.gex │ │ │ │ ├── L264-4.gex │ │ │ │ ├── L46-17.gex │ │ │ │ ├── L66-1.gex │ │ │ │ ├── L68-5.gex │ │ │ │ └── LL153-1.gex │ │ │ │ ├── M │ │ │ │ ├── M010-26-1.gex │ │ │ │ ├── M010-26.gex │ │ │ │ ├── M010-32.gex │ │ │ │ ├── M017-18.gex │ │ │ │ ├── M018-19.gex │ │ │ │ ├── M020-52.gex │ │ │ │ ├── M021-59.gex │ │ │ │ ├── M021-62.gex │ │ │ │ ├── M021-64.gex │ │ │ │ ├── M024-94.gex │ │ │ │ ├── M04-6.gex │ │ │ │ └── M09-14.gex │ │ │ │ └── Y │ │ │ │ ├── yC102.gex │ │ │ │ ├── yC103.gex │ │ │ │ ├── yL045-10.gex │ │ │ │ ├── yL157-1.gex │ │ │ │ ├── yL158-10.gex │ │ │ │ ├── yL158-9.gex │ │ │ │ ├── yL181-4.gex │ │ │ │ ├── yL182-1.gex │ │ │ │ └── yL182-4.gex │ │ ├── other examples │ │ │ ├── 0.gex │ │ │ ├── a.gex │ │ │ ├── a1.gex │ │ │ ├── a2.gex │ │ │ ├── aa │ │ │ ├── aaaa │ │ │ ├── d.gex │ │ │ ├── d1.gex │ │ │ ├── d3.gex │ │ │ ├── d4.gex │ │ │ ├── d5.gex │ │ │ ├── d6.gex │ │ │ ├── d7.gex │ │ │ ├── d8.gex │ │ │ ├── dd.gex │ │ │ ├── dg.gex │ │ │ ├── m1.gex │ │ │ ├── mm.gex │ │ │ ├── morley │ │ │ ├── morley1.gex │ │ │ ├── morley2.gex │ │ │ ├── morley3.gex │ │ │ ├── morley4.gex │ │ │ ├── morley5.gex │ │ │ ├── nd1.gex │ │ │ ├── nd5cir.gex │ │ │ ├── ndg1.gex │ │ │ ├── t1 │ │ │ ├── t1.gex │ │ │ ├── t2 │ │ │ ├── t2.gex │ │ │ ├── t3 │ │ │ ├── t3.gex │ │ │ ├── v.gex │ │ │ └── z.gex │ │ └── rebuilt example │ │ │ ├── 03_Pyth2.gex │ │ │ ├── 23-15.gex │ │ │ ├── 5cir.gex │ │ │ ├── 66-2.gex │ │ │ ├── 9point.gex │ │ │ ├── A004.gex │ │ │ ├── A005.gex │ │ │ ├── A005_1.gex │ │ │ ├── fuerbach.gex │ │ │ ├── proof24.gex │ │ │ ├── proof_28.gex │ │ │ ├── pyth1.gex │ │ │ ├── pyth2.gex │ │ │ ├── pyth3.gex │ │ │ └── test1.gex │ ├── help │ │ ├── Contents.html │ │ ├── Equivalance.html │ │ ├── Fuerbach.html │ │ ├── License.html │ │ ├── Line.html │ │ ├── Nine_Point_Circle.html │ │ ├── Pythagoras.html │ │ ├── a_quick_start.html │ │ ├── abline.html │ │ ├── add_conclusion.html │ │ ├── aline.html │ │ ├── angle.html │ │ ├── animation.html │ │ ├── area.html │ │ ├── atp.html │ │ ├── automated_theorem_prover.html │ │ ├── basic_operation.html │ │ ├── bline.html │ │ ├── center.html │ │ ├── circle.html │ │ ├── circle_by_radius.html │ │ ├── circle_by_three_points.html │ │ ├── constraint.html │ │ ├── contact.html │ │ ├── deductive_database.html │ │ ├── dgs.html │ │ ├── dynamic_geometry_software.html │ │ ├── dynamic_presentation_of_proofs.html │ │ ├── effects.html │ │ ├── effects │ │ │ ├── 9point.gif │ │ │ ├── 9pt.gif │ │ │ ├── angle_inside.gif │ │ │ ├── angle_less.gif │ │ │ ├── between.gif │ │ │ ├── cg.gif │ │ │ ├── cg1.gif │ │ │ ├── conclusion.gif │ │ │ ├── convex.gif │ │ │ ├── dis_less.gif │ │ │ ├── duplicated.gif │ │ │ ├── e1.gif │ │ │ ├── equation1.gif │ │ │ ├── equation2.gif │ │ │ ├── method.gif │ │ │ ├── opposite.gif │ │ │ ├── p1.gif │ │ │ ├── p11.gif │ │ │ ├── p13.gif │ │ │ ├── p14.gif │ │ │ ├── p15.gif │ │ │ ├── p16.gif │ │ │ ├── p17.gif │ │ │ ├── p18.gif │ │ │ ├── p19.gif │ │ │ ├── p2.gif │ │ │ ├── p3.gif │ │ │ ├── p4.gif │ │ │ ├── p4_1.gif │ │ │ ├── p5.gif │ │ │ ├── p6.gif │ │ │ ├── p7.gif │ │ │ ├── p9.gif │ │ │ ├── para_inside.gif │ │ │ ├── same_side.gif │ │ │ ├── square.gif │ │ │ ├── st.gif │ │ │ ├── st1.gif │ │ │ └── triangle_inside.gif │ │ ├── fillpolygon.html │ │ ├── foot.html │ │ ├── free_transform.html │ │ ├── full-angle.html │ │ ├── full_angle_method.html │ │ ├── gex_jgex.html │ │ ├── groebner.html │ │ ├── history.html │ │ ├── image4 │ │ │ ├── f_01.gif │ │ │ ├── f_01.jp2 │ │ │ ├── f_02.gif │ │ │ ├── f_03.gif │ │ │ ├── f_04.gif │ │ │ ├── f_05.gif │ │ │ ├── f_06.gif │ │ │ ├── f_07.gif │ │ │ ├── f_08.gif │ │ │ ├── n_01.gif │ │ │ ├── n_02.gif │ │ │ ├── n_03.gif │ │ │ ├── n_c.gif │ │ │ ├── n_c1.gif │ │ │ └── n_m.gif │ │ ├── image6 │ │ │ └── asps.gif │ │ ├── images │ │ │ ├── abline.gif │ │ │ ├── angle.gif │ │ │ ├── animate_start.gif │ │ │ ├── animate_stop.gif │ │ │ ├── autoshowstep.gif │ │ │ ├── circle.gif │ │ │ ├── circle3p.gif │ │ │ ├── circler.gif │ │ │ ├── construct_history.gif │ │ │ ├── contextualHelp16.gif │ │ │ ├── contextualHelp24.gif │ │ │ ├── delete16.gif │ │ │ ├── delete24.gif │ │ │ ├── drag.gif │ │ │ ├── dselect.gif │ │ │ ├── ff.gif │ │ │ ├── fillpolygon.gif │ │ │ ├── foot.gif │ │ │ ├── fr.gif │ │ │ ├── gexicon.gif │ │ │ ├── grid.gif │ │ │ ├── headline.jpg │ │ │ ├── intersect.gif │ │ │ ├── iso.gif │ │ │ ├── lessGrid.gif │ │ │ ├── line.gif │ │ │ ├── line_more_end.gif │ │ │ ├── line_no_end.gif │ │ │ ├── line_two_end.gif │ │ │ ├── midpoint.gif │ │ │ ├── mirror.gif │ │ │ ├── moreGrid.gif │ │ │ ├── move.gif │ │ │ ├── new.gif │ │ │ ├── node_draw_leaf.gif │ │ │ ├── node_draw_not_leaf.gif │ │ │ ├── node_hidden.gif │ │ │ ├── node_prove_leaf.gif │ │ │ ├── node_prove_not_leaf.gif │ │ │ ├── node_to_prove.gif │ │ │ ├── node_tree.gif │ │ │ ├── node_visible.gif │ │ │ ├── open.gif │ │ │ ├── open_tm.gif │ │ │ ├── parallel.gif │ │ │ ├── parallelogram.gif │ │ │ ├── parrow.gif │ │ │ ├── pause.gif │ │ │ ├── pentagon.gif │ │ │ ├── perp.gif │ │ │ ├── play.gif │ │ │ ├── point.gif │ │ │ ├── polygon.gif │ │ │ ├── ptree │ │ │ │ ├── addconc.gif │ │ │ │ ├── back.gif │ │ │ │ ├── bc.gif │ │ │ │ ├── conc.gif │ │ │ │ ├── cross.gif │ │ │ │ ├── deleteIcon.gif │ │ │ │ ├── downsel.gif │ │ │ │ ├── draw.gif │ │ │ │ ├── end.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── first.gif │ │ │ │ ├── font.gif │ │ │ │ ├── full_step.gif │ │ │ │ ├── hide_pred.gif │ │ │ │ ├── hook.gif │ │ │ │ ├── last.gif │ │ │ │ ├── more.gif │ │ │ │ ├── pause.gif │ │ │ │ ├── question.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── run.gif │ │ │ │ ├── save.gif │ │ │ │ ├── show_pred.gif │ │ │ │ ├── sort.gif │ │ │ │ ├── step_back.gif │ │ │ │ ├── step_forward.gif │ │ │ │ └── stop.gif │ │ │ ├── quadrangle.gif │ │ │ ├── quadrangle_square.gif │ │ │ ├── quit.gif │ │ │ ├── ra_trapezoid.gif │ │ │ ├── rectangle.gif │ │ │ ├── redo.gif │ │ │ ├── reflect.gif │ │ │ ├── regenerate.gif │ │ │ ├── save.gif │ │ │ ├── select.gif │ │ │ ├── snap.gif │ │ │ ├── square.gif │ │ │ ├── stop.gif │ │ │ ├── text.gif │ │ │ ├── translate.gif │ │ │ ├── trapezoid.gif │ │ │ ├── trapezoid_perp.gif │ │ │ ├── triangle.gif │ │ │ ├── triangle_all.gif │ │ │ ├── triangle_iso.gif │ │ │ ├── triangle_perp.gif │ │ │ ├── triangle_sq_iso.gif │ │ │ ├── undo.gif │ │ │ ├── zoom-in.gif │ │ │ └── zoom-out.gif │ │ ├── images2 │ │ │ ├── 9pt_full.gif │ │ │ ├── abline.gif │ │ │ ├── aline.gif │ │ │ ├── angle1.gif │ │ │ ├── animate.gif │ │ │ ├── animation.gif │ │ │ ├── animationbar.gif │ │ │ ├── bline.gif │ │ │ ├── change_color.gif │ │ │ ├── circle.gif │ │ │ ├── circle3p.gif │ │ │ ├── circled.gif │ │ │ ├── conc.gif │ │ │ ├── drag.gif │ │ │ ├── equal mark.gif │ │ │ ├── fillpolygon.gif │ │ │ ├── fixpane.gif │ │ │ ├── foot.gif │ │ │ ├── gdd2.gif │ │ │ ├── inscribed angle theorem.gif │ │ │ ├── inter.gif │ │ │ ├── inter_cc.gif │ │ │ ├── inter_lc.gif │ │ │ ├── inter_ll.gif │ │ │ ├── inter_select.gif │ │ │ ├── jgex_m.gif │ │ │ ├── jgex_m1.gif │ │ │ ├── jgex_m2.gif │ │ │ ├── jgex_m3.gif │ │ │ ├── jgex_m4.gif │ │ │ ├── jgex_m5.gif │ │ │ ├── jgex_m6.gif │ │ │ ├── jgex_m7.gif │ │ │ ├── jgex_mm.gif │ │ │ ├── line.gif │ │ │ ├── line2.gif │ │ │ ├── locus.gif │ │ │ ├── measure distance.gif │ │ │ ├── mpaneid.gif │ │ │ ├── mpmenu1.gif │ │ │ ├── mpmenu2.gif │ │ │ ├── mpmenu22.gif │ │ │ ├── mpmenu3.gif │ │ │ ├── mpmenu4.gif │ │ │ ├── mpmenu6.gif │ │ │ ├── mppane.gif │ │ │ ├── mproof.gif │ │ │ ├── mtext.gif │ │ │ ├── ncheck.gif │ │ │ ├── ndgs.gif │ │ │ ├── parallel.gif │ │ │ ├── perpendicular.gif │ │ │ ├── point.gif │ │ │ ├── polynomials.gif │ │ │ ├── poncircle.gif │ │ │ ├── ponline.gif │ │ │ ├── popmenu.gif │ │ │ ├── ppane.gif │ │ │ ├── ppdialog.gif │ │ │ ├── preference.gif │ │ │ ├── preference1.gif │ │ │ ├── preference2.gif │ │ │ ├── preference3.gif │ │ │ ├── preferencec.gif │ │ │ ├── preferencec2.gif │ │ │ ├── pyth1.gif │ │ │ ├── radical.gif │ │ │ ├── reflect_line.gif │ │ │ ├── reflect_point.gif │ │ │ ├── right angle mark.gif │ │ │ ├── rotate.gif │ │ │ ├── rotate2.gif │ │ │ ├── sangle.gif │ │ │ ├── square.gif │ │ │ ├── tcline.gif │ │ │ ├── trace.gif │ │ │ ├── transform1 mark.gif │ │ │ ├── transform2.gif │ │ │ ├── transform3.gif │ │ │ ├── two_circle_theorem.gif │ │ │ └── wu1.png │ │ ├── images3 │ │ │ ├── centroid.gif │ │ │ ├── circumcenter.gif │ │ │ ├── circumcenter1.gif │ │ │ ├── incenter.gif │ │ │ ├── jgex.gif │ │ │ ├── orient.gif │ │ │ ├── orient1.gif │ │ │ ├── orient2.gif │ │ │ ├── orient_t.gif │ │ │ ├── orient_t1.gif │ │ │ ├── orthocenter.gif │ │ │ ├── ppane.gif │ │ │ ├── property.JPG │ │ │ ├── property_basic.JPG │ │ │ ├── property_circle.JPG │ │ │ ├── property_line.JPG │ │ │ ├── property_point.JPG │ │ │ └── ratio_dialog.gif │ │ ├── images5 │ │ │ └── pyth.gif │ │ ├── images_a │ │ │ ├── equ.gif │ │ │ ├── iso.gif │ │ │ ├── parallelogram.gif │ │ │ ├── rectangle.gif │ │ │ ├── rt.gif │ │ │ ├── rtriangle.gif │ │ │ ├── square.gif │ │ │ ├── trapezoid.gif │ │ │ └── triangle.gif │ │ ├── index.html │ │ ├── installation_updating.html │ │ ├── interface.html │ │ ├── intersect.html │ │ ├── introduction_manually_input_method.html │ │ ├── jgex_on_web.html │ │ ├── lemmas.html │ │ ├── lib │ │ │ ├── 1.css │ │ │ ├── overlib.js │ │ │ └── tiki-js.js │ │ ├── locus.html │ │ ├── main_menu.html │ │ ├── manually_method_how_to_input.html │ │ ├── mark.html │ │ ├── measure_distance.html │ │ ├── mgp.html │ │ ├── midpoint.html │ │ ├── mirror.html │ │ ├── move.html │ │ ├── ndgs.html │ │ ├── numerical_check.html │ │ ├── oriented_segment.html │ │ ├── parallel.html │ │ ├── pdf │ │ │ ├── Automated Generation of Readable Proofs with.pdf │ │ │ ├── Automated Generation of Readable Proofs with2.pdf │ │ │ └── jar-gdbase.pdf │ │ ├── perpendicular.html │ │ ├── point.html │ │ ├── point_by_point_and_segement.html │ │ ├── polygon.html │ │ ├── polynomials.html │ │ ├── preface.html │ │ ├── preference.html │ │ ├── proof_methods.html │ │ ├── property.html │ │ ├── prove.html │ │ ├── radical_of_two_circles.html │ │ ├── reference_dgs.html │ │ ├── right_click_menu.html │ │ ├── right_toolbar.html │ │ ├── select.html │ │ ├── show_hide.html │ │ ├── snap_grid.html │ │ ├── special angle.html │ │ ├── styles │ │ │ ├── cindydoc.css │ │ │ ├── gexdoc.css │ │ │ └── transitions │ │ │ │ └── 1.8to1.9.css │ │ ├── tcline.html │ │ ├── text.html │ │ ├── toolbar.html │ │ ├── trace.html │ │ ├── transform.html │ │ ├── translate.html │ │ ├── undo_redo.html │ │ ├── what_is_jgex.html │ │ ├── what_is_new.html │ │ ├── wu.html │ │ └── zoom_in_out.html │ ├── import │ │ ├── Euler_line-Prove.ggb │ │ ├── Euler_line.ggb │ │ ├── Euler_line_long.ggb │ │ ├── limitations.txt │ │ ├── two_medians.ggb │ │ └── two_medians_long.ggb │ ├── rules │ │ ├── ASA.gex │ │ ├── Rule1.gex │ │ ├── Rule2.gex │ │ ├── Rule3.gex │ │ ├── SAS.gex │ │ └── SSS.gex │ └── web │ │ ├── Rule01.jpg │ │ ├── Rule02.jpg │ │ ├── Rule03.jpg │ │ ├── Rule04.jpg │ │ ├── Rule05.jpg │ │ ├── Rule06.jpg │ │ ├── Rule07.jpg │ │ ├── Rule08.jpg │ │ ├── Rule09.jpg │ │ ├── Rule10.jpg │ │ ├── Rule11.jpg │ │ ├── Rule12.jpg │ │ ├── Rule13.jpg │ │ ├── Rule14.jpg │ │ ├── Rule15.jpg │ │ ├── Rule16.jpg │ │ ├── Rule17.jpg │ │ ├── Rule18.jpg │ │ ├── Rule19.jpg │ │ ├── Rule20.jpg │ │ ├── Rule21.jpg │ │ ├── Rule22.jpg │ │ ├── Rule23.jpg │ │ ├── Rule24.jpg │ │ ├── Rule25.jpg │ │ ├── Rule26.jpg │ │ ├── Rule27.jpg │ │ ├── Rule28.jpg │ │ ├── Rule29.jpg │ │ ├── Rule30.jpg │ │ ├── Rule31.jpg │ │ ├── Rule32.jpg │ │ ├── Rule33.jpg │ │ ├── Rule34.jpg │ │ ├── Rule35.jpg │ │ ├── Rule36.jpg │ │ ├── Rule37.jpg │ │ ├── Rule38.jpg │ │ ├── Rule39.jpg │ │ ├── Rule40.jpg │ │ ├── Rule41.jpg │ │ ├── Rule42.jpg │ │ └── Rule43.jpg │ └── wprover │ ├── images │ ├── Cursor │ │ ├── zoom_in.gif │ │ └── zoom_out.gif │ ├── abline.gif │ ├── about │ │ ├── headline.jpg │ │ └── welcome.jpg │ ├── angle.gif │ ├── animate_start.gif │ ├── animate_stop.gif │ ├── arrow │ │ ├── end.gif │ │ ├── pause.gif │ │ ├── play.gif │ │ ├── step.gif │ │ └── stop.gif │ ├── autoshowstep.gif │ ├── circle.gif │ ├── circle3p.gif │ ├── circler.gif │ ├── construct_history.gif │ ├── drag.gif │ ├── dselect.gif │ ├── dtree │ │ ├── angle.gif │ │ ├── area.gif │ │ ├── because.gif │ │ ├── circle.gif │ │ ├── detail.gif │ │ ├── downsel.gif │ │ ├── hence.gif │ │ ├── intersection.gif │ │ ├── line.gif │ │ ├── para.gif │ │ ├── parallelogram.gif │ │ ├── perp.gif │ │ ├── quadrangle.gif │ │ ├── question.gif │ │ ├── rectangle.gif │ │ ├── right.gif │ │ ├── square.gif │ │ ├── trapezoid.gif │ │ ├── triangle.gif │ │ ├── up.gif │ │ ├── up1.gif │ │ ├── warn.gif │ │ └── wrong.gif │ ├── ff.gif │ ├── fillpolygon.gif │ ├── foot.gif │ ├── fr.gif │ ├── gexicon.gif │ ├── grid.gif │ ├── intersect.gif │ ├── iso.gif │ ├── lessGrid.gif │ ├── line.gif │ ├── line_more_end.gif │ ├── line_no_end.gif │ ├── line_two_end.gif │ ├── midpoint.gif │ ├── mirror.gif │ ├── moreGrid.gif │ ├── mouse │ │ └── handtool.gif │ ├── move.gif │ ├── new.gif │ ├── new │ │ ├── Play24.gif │ │ └── jlf05.gif │ ├── node_tree.gif │ ├── open.gif │ ├── other │ │ ├── Last.gif │ │ ├── P_FirstFrame_Wi_N.gif │ │ ├── P_NextAnim_Lg_N.gif │ │ ├── Save.gif │ │ ├── abstractClasses.gif │ │ ├── array.gif │ │ ├── arrowDown.gif │ │ ├── arrowUpSquare.gif │ │ ├── arrow_down.gif │ │ ├── arrow_up.gif │ │ ├── attach_comment.gif │ │ ├── autoscrollFromSource.gif │ │ ├── checkIcon.gif │ │ ├── close.gif │ │ ├── collapse.gif │ │ ├── commitChangeListButton.gif │ │ ├── copy_data.gif │ │ ├── cvsDiffButtons.gif │ │ ├── debug.gif │ │ ├── debugResumeIcon.gif │ │ ├── debugStopIcon.gif │ │ ├── deleteIcon.gif │ │ ├── excludeFromCommit.gif │ │ ├── forward.gif │ │ ├── help.gif │ │ ├── hierarchyArrow.gif │ │ ├── hierarchyPlus.gif │ │ ├── icon_InsertReplace.gif │ │ ├── icon_InsertReplace2.gif │ │ ├── icon_Remove.gif │ │ ├── includeIntoCommit.gif │ │ ├── javaClass.gif │ │ ├── javaClass_small.gif │ │ ├── javaInterface.gif │ │ ├── junitError.gif │ │ ├── junitFail.gif │ │ ├── l_none.gif │ │ ├── method.gif │ │ ├── minus.gif │ │ ├── moveUp.gif │ │ ├── nav_backward.gif │ │ ├── nav_forward.gif │ │ ├── nav_refresh.gif │ │ ├── pause.gif │ │ ├── plus.gif │ │ ├── prevcomment.gif │ │ ├── projectSortByType.gif │ │ ├── reflect.gif │ │ ├── refresh_data.gif │ │ ├── rerun.gif │ │ ├── reset.gif │ │ ├── rollbackCVS.gif │ │ ├── run.gif │ │ ├── run_exc.gif │ │ ├── scissors.gif │ │ ├── selectAllButton.gif │ │ ├── step_forward.gif │ │ ├── stop.gif │ │ ├── stop1.gif │ │ ├── structureHideFields.gif │ │ ├── structureProperties.gif │ │ ├── synchronize.gif │ │ ├── tabScrollLeft.gif │ │ ├── tabScrollRight.gif │ │ ├── undo.gif │ │ └── unmark.gif │ ├── parallel.gif │ ├── parallelogram.gif │ ├── parrow.gif │ ├── pause.gif │ ├── pentagon.gif │ ├── perp.gif │ ├── play.gif │ ├── point.gif │ ├── polygon.gif │ ├── ptbar │ │ ├── close.gif │ │ ├── fastforward16.gif │ │ ├── pause16.gif │ │ ├── play16.gif │ │ ├── rewind16.gif │ │ ├── stepBack16.gif │ │ ├── stepForward16.gif │ │ └── stop16.gif │ ├── ptree │ │ ├── addconc.gif │ │ ├── back.gif │ │ ├── bc.gif │ │ ├── conc.gif │ │ ├── cross.gif │ │ ├── deleteIcon.gif │ │ ├── downsel.gif │ │ ├── draw.gif │ │ ├── end.gif │ │ ├── expand.gif │ │ ├── first.gif │ │ ├── font.gif │ │ ├── full_step.gif │ │ ├── hide_pred.gif │ │ ├── hook.gif │ │ ├── last.gif │ │ ├── more.gif │ │ ├── pause.gif │ │ ├── question.gif │ │ ├── refresh.gif │ │ ├── run.gif │ │ ├── save.gif │ │ ├── show_pred.gif │ │ ├── sort.gif │ │ ├── step_back.gif │ │ ├── step_forward.gif │ │ └── stop.gif │ ├── quadrangle.gif │ ├── quadrangle_square.gif │ ├── quit.gif │ ├── ra_trapezoid.gif │ ├── rectangle.gif │ ├── redo.gif │ ├── rpane │ │ └── AlignCenter24.gif │ ├── save.gif │ ├── select.gif │ ├── small │ │ ├── blank.gif │ │ ├── check.gif │ │ ├── help.gif │ │ ├── history.gif │ │ ├── image.gif │ │ ├── infor.gif │ │ ├── new.gif │ │ ├── open.gif │ │ ├── poly.gif │ │ ├── preference.gif │ │ ├── print.gif │ │ ├── question.gif │ │ ├── run.gif │ │ ├── save.gif │ │ ├── saveas.gif │ │ └── step.gif │ ├── snap.gif │ ├── square.gif │ ├── stop.gif │ ├── symbol │ │ ├── alpha.gif │ │ ├── angle.gif │ │ ├── belta.gif │ │ ├── cir.gif │ │ ├── eq.gif │ │ ├── eq_sim.gif │ │ ├── eqq.gif │ │ ├── exist.gif │ │ ├── farless.gif │ │ ├── farmore.gif │ │ ├── for_every.gif │ │ ├── gama.gif │ │ ├── infinity.gif │ │ ├── less.gif │ │ ├── mequal.gif │ │ ├── neqever.gif │ │ ├── noteq.gif │ │ ├── para.gif │ │ ├── perp.gif │ │ ├── sim.gif │ │ ├── sym_congruent.gif │ │ ├── sym_eqangle.gif │ │ └── triangle.gif │ ├── text.gif │ ├── ticon │ │ ├── hide.gif │ │ ├── layout.gif │ │ └── show.gif │ ├── translate.gif │ ├── trapezoid.gif │ ├── trapezoid_perp.gif │ ├── triangle.gif │ ├── triangle_all.gif │ ├── triangle_iso.gif │ ├── triangle_perp.gif │ ├── triangle_sq_iso.gif │ ├── undo.gif │ ├── zoom-in.gif │ └── zoom-out.gif │ └── rule │ ├── gddrule │ ├── gddrule1 │ ├── image │ ├── rule0-1.gif │ ├── rule0-2.gif │ ├── rule0-3.gif │ ├── rule0.gif │ ├── rule11_1.gif │ └── rule11_2.gif │ ├── rule.html │ ├── rule0.html │ └── rule11.html └── test ├── import-ggb-prove-gdd-export-gv-png └── prove-gdd-export-gv-svg /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Java-Geometry-Expert -------------------------------------------------------------------------------- /assets/linux/Java-Geometry-Expert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/assets/linux/Java-Geometry-Expert.png -------------------------------------------------------------------------------- /assets/mac/Java-Geometry-Expert.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/assets/mac/Java-Geometry-Expert.icns -------------------------------------------------------------------------------- /assets/windows/Java-Geometry-Expert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/assets/windows/Java-Geometry-Expert.ico -------------------------------------------------------------------------------- /attic/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /attic/Copyright: -------------------------------------------------------------------------------- 1 | This piece of software is free for any purposes (including commercialization) as long as the author is mentioned in the software and listed as one of the creators. 2 | -------------------------------------------------------------------------------- /attic/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | Main-Class: wprover.GExpert 4 | -------------------------------------------------------------------------------- /attic/convert.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/attic/convert.jar -------------------------------------------------------------------------------- /attic/gettext/3-translate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Use your favorite translation software (e.g. poedit) to edit the .po files in the po/ folder." 3 | exit 0 4 | -------------------------------------------------------------------------------- /attic/gettext/package-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PACKAGE_VERSION=`cat ../wprover/Version.java | grep "sversion =" | awk '{print $6}' | sed s/\"//g | sed s/\;//` 4 | -------------------------------------------------------------------------------- /attic/gettext/settings.conf: -------------------------------------------------------------------------------- 1 | SUPPORTED_LANGUAGES="de rs fa hu it pt zh_CN" 2 | MAINTAINER_EMAIL="jgex@googlegroups.com" 3 | -------------------------------------------------------------------------------- /attic/language/Persian2.lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/attic/language/Persian2.lan -------------------------------------------------------------------------------- /attic/nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | compile.on.save=true 2 | user.properties.file=/Users/Qing/Library/Application Support/NetBeans/8.0/build.properties 3 | -------------------------------------------------------------------------------- /attic/update.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/attic/update.jar -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.parallel=true 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Java-Geometry-Expert' 2 | 3 | -------------------------------------------------------------------------------- /src/main/java/pdf/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * This package serves as the foundation for managing, processing, and generating PDF documents 3 | * within the project. 4 | */ 5 | package pdf; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A003.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A003.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A004.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A004.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A005.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A005.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A006.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A006.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A013.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A013.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A015-ch.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A015-ch.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A015.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A015.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A016.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A016.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A016_1.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A016_1.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A018.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A018.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A039-2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A039-2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A039Y1.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A039Y1.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/A039Y2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/A039Y2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B004.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B004.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B005.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B005.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B006.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B006.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B008.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B008.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B009.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B009.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B016-1.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B016-1.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B016.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B016.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B016x.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B016x.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B022.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B022.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B022Y.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B022Y.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/B029.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/B029.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C004.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C004.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C017.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C017.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C027.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C027.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C030.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C030.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C030Y.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C030Y.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C030v.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C030v.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C031.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C031.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C033.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C033.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C035.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C035.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C038.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C038.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C048.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C048.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/C110.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/C110.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/2_PWW/Fig1-5.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/2_PWW/Fig1-5.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/3_JAR/5cirdb.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/3_JAR/5cirdb.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/3_JAR/simson.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/3_JAR/simson.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/cmm-14.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/cmm-14.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof-24.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof-24.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_01.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_01.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_02.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_02.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_14.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_14.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_16.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_16.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_24.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_24.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_25.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_25.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_26.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_26.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_27.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_27.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_28.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_28.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_31.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_31.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_35.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_35.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_36.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_36.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_55.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_55.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_64.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_64.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_70.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_70.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/proof_71.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/proof_71.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/pyth_cal.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/pyth_cal.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/pyth_dg.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/pyth_dg.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/4_PYTH/pyth_ssh.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/4_PYTH/pyth_ssh.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/101.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/101.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/102.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/102.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/14-4.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/14-4.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/20-1.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/20-1.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/23-14.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/23-14.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/23-15.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/23-15.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/23-7.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/23-7.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/24-19.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/24-19.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/24-22.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/24-22.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/31-5.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/31-5.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/35-9.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/35-9.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/36-11.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/36-11.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/36-13.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/36-13.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/36-19.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/36-19.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/52-10.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/52-10.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/52-5.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/52-5.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/52-6.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/52-6.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-21.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-21.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-24.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-24.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-31.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-31.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-36.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-36.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-44.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-44.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-46.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-46.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-49.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-49.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-54.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-54.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/54-56.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/54-56.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/66-2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/66-2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/5_MANUAL/morley.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/5_MANUAL/morley.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/014-2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/014-2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/43-6.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/43-6.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/C003.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/C003.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/C006f.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/C006f.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/L064.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/L064.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/7_Book/LL/L81-3.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/7_Book/LL/L81-3.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/1-c2-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C K 4 | COLLINEAR K B C 5 | SHOW: NO 6 | B(37+0,146+0) C(259+0,283+0) K(139+0,209+0) -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/10-ea-3: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B K; 4 | EQANGLE K A B A B K; 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/11-pp-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C A1 B1 C1 K; 4 | PARALLEL K A B C; 5 | PARALLEL K A1 B1 C1; 6 | SHOW: NO; 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/12-PP-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C K; 4 | PARALLEL K C B A; 5 | PARALLEL K A B C; 6 | SHOW: NO; 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/13-lt-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C D E K; 4 | COLLINEAR K A C; 5 | PERPENDICULAR K B D E; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/14-LT-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C K; 4 | COLLINEAR K A C; 5 | PERPENDICULAR K B A C; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/15-LT-3: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C K; 4 | COLLINEAR K A C; 5 | PERPENDICULAR K A B C; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/16-eq-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C A1 B1 C1 K; 4 | EQDISTANCE K A B C; 5 | EQDISTANCE K A1 B1 C1; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/17-eq-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C A1 C1 K; 4 | EQDISTANCE K A B C; 5 | EQDISTANCE K A1 B C1; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/18-eq-3: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B A1 B1 C1 K; 4 | EQDISTANCE K A K B; 5 | EQDISTANCE K A1 B1 C1; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/19-eq-4: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C K; 4 | EQDISTANCE K A K B; 5 | EQDISTANCE K B K C; 6 | SHOW: NO; -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/2-c2-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C D K 4 | PARALLEL K B C D 5 | SHOW: NO 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/3-t-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C K 4 | PERPENDICULAR K B K C 5 | SHOW: NO -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/4-t-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C D K 4 | PERPENDICULAR K B C D 5 | SHOW: NO -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/5-eq-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C D K 4 | EQDISTANCE K B C D 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/6-eq-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B C K; 4 | EQDISTANCE K B K C; 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/7-ea-1: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B D A1 B1 D1 K; 4 | EQANGLE K B D A1 B1 D1; 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/8-eq-2: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT B D A1 K; 4 | EQANGLE B K D B A1 D; 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/NDG/9-eq-3: -------------------------------------------------------------------------------- 1 | EXAMPLE THM 2 | HYPOTHESES: 3 | POINT A B C K; 4 | EQANGLE A B K K B C; 5 | SHOW: NO; 6 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/draw/eqh.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/draw/eqh.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/mproof/cy.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/mproof/cy.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndg1/44.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndg1/44.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndg1/53.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndg1/53.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/01.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/01.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/02.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/02.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/03.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/03.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/04.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/04.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/05.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/05.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/06.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/06.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/07.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/07.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/08.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/08.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/ndgs/09.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/ndgs/09.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/other/cy.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/other/cy.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Other/paper/aa2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Other/paper/aa2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/01.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/01.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/02.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/02.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/03.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/03.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/04.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/04.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/05.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/05.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/06.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/06.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/07.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/07.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/08.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/08.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/09.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/09.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/11.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/11.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/12.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/12.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/13.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/13.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/14.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/14.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/15.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/15.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/16.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/16.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/17.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/17.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/18.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/18.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/19.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/19.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/20.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/20.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/21.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/21.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/22.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/22.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/23.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/23.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/24.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/24.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/25.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/25.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/26.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/26.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/27.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/27.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/28.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/28.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/FULL/29.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/FULL/29.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/01.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/01.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/02.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/02.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/03.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/03.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/04.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/04.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/05.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/05.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/06.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/06.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/07.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/07.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/08.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/08.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/09.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/09.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/10.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/10.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/11.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/11.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/12.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/12.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/13.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/13.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/14.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/14.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/15.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/15.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/16.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/16.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/17.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/17.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/18.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/18.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/19.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/19.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/20.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/20.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/21.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/21.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/22.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/22.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/23.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/23.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/24.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/24.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/25.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/25.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/26.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/26.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/27.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/27.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/28.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/28.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/29.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/29.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/30.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/30.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/31.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/31.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/32.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/32.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/33.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/33.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/34.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/34.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/35.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/35.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/36.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/36.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/37.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/37.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/38.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/38.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/39.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/39.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/40.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/40.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/41.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/41.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/42.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/42.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/Rules/GDD/43.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/Rules/GDD/43.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/cantor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/ex-gao/back/cantor -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/d-aux: -------------------------------------------------------------------------------- 1 | 2 | d104: centroid 3 | d127: 4 | d65 5 | d94: -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/d-ax: -------------------------------------------------------------------------------- 1 | d94: 2 | d104: centroid -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/d-un: -------------------------------------------------------------------------------- 1 | d65: description, order 2 | d123 3 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/d71: -------------------------------------------------------------------------------- 1 | EXAMPLE d56 2 | HYPOTHESES: 3 | POINT A B C; 4 | FOOT D A B C; 5 | FOOT E B A C; 6 | MIDPOINT F A B; 7 | SHOW: EQANGLE A C B E D F. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/ex-aux: -------------------------------------------------------------------------------- 1 | affine 2 | trap1 3 | ne2: need if ratio is not used 4 | ne4 5 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/f-un: -------------------------------------------------------------------------------- 1 | f21: * 2 | f25: * 3 | f83: * 4 | f87: * 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/f105: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/f47: -------------------------------------------------------------------------------- 1 | EXAMPLE A121_81 2 | HYPOTHESES: 3 | CIRCLE A B C D; 4 | ORTHOCENTER U A B D; 5 | ORTHOCENTER V A C D; 6 | SHOW: COCIRCLE U V A D. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/m-un: -------------------------------------------------------------------------------- 1 | total: = 35 2 | 3 | m35-9 4 | m55-18 5 | 6 | m142-12 -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/y-aux: -------------------------------------------------------------------------------- 1 | y14-4 2 | y21-1 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/exs-base/y-un: -------------------------------------------------------------------------------- 1 | y6-1 :sss 2 | y17-9: orientation 3 | y20-11:orientation -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-106: -------------------------------------------------------------------------------- 1 | EXAMPLE A-106 2 | HYPOTHESES: 3 | POINT A B C ; 4 | MIDPOINT M B C ; 5 | LINE X A B; 6 | LINE X A C; 7 | LINE X A M; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-184: -------------------------------------------------------------------------------- 1 | 2 | EXAMPLE A-184 3 | HYPOTHESES: 4 | POINT A B C ; 5 | FOOT F C A B ; 6 | FOOT E B A C ; 7 | SHOW: EQ-PRODUCT A F A B A E A C. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-203-1: -------------------------------------------------------------------------------- 1 | 2 | EXAMPLE A-203-1 3 | HYPOTHESES: 4 | POINT A B C ; 5 | CIRCUMCENTER O A B C ; 6 | CENTROID G A B C ; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-412: -------------------------------------------------------------------------------- 1 | EXAMPLE A-412 2 | HYPOTHESES: 3 | POINT A B ; 4 | ON-BLINE O A B; 5 | ON-LINE E A B; 6 | CIR X O A; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-73B: -------------------------------------------------------------------------------- 1 | 2 | EXAMPLE A-73B 3 | HYPOTHESES: 4 | POINT A B C ; 5 | CIRCUMCENTER O A B C ; 6 | FOOT D A B C ; 7 | SHOW: EQANGLE B A D O A C. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/A-87: -------------------------------------------------------------------------------- 1 | 2 | EXAMPLE A-87 3 | HYPOTHESES: 4 | POINT A B C ; 5 | MIDPOINT M A B ; 6 | MIDPOINT N A C ; 7 | SHOW: PARALLEL M N B C. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/PE-H: -------------------------------------------------------------------------------- 1 | EXAMPLE PE-H 2 | HYPOTHESES: 3 | POINT A B C ; 4 | FOOT E A B C ; 5 | FOOT F B A C ; 6 | FOOT G C A B ; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/b9: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B P; 4 | ON-LINE C A B; 5 | FOOT Q P A B; 6 | LINE X P A; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/cc: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT C E; 4 | MIDPOINT O C E; 5 | SHOW: NO. 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f12-1: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B C; 4 | ON-LINE F C B; 5 | LINE X A B; 6 | LINE X A C; 7 | LINE X A F; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f12-13: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT B C; 4 | ON-TLINE A C C B; 5 | FOOT D C A B; 6 | SHOW: NO. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f12-2: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B; 4 | PSQUARE C A B; 5 | MIDPOINT M A B; 6 | INTERSECTION-LT P B C A C M; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f12-7: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B C; 4 | ON-LINE P B C; 5 | LINE X A B; 6 | LINE X A C; 7 | LINE X A P; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f12-8: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B C; 4 | ON-LINE D B C; 5 | LINE X A B; 6 | LINE X A C; 7 | LINE X A D; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f13-1: -------------------------------------------------------------------------------- 1 | EXAMPLE A-175 2 | HYPOTHESES: 3 | POINT A B P; 4 | ON-LINE C A B; 5 | LINE X P A; 6 | LINE X P B; 7 | LINE X P C; 8 | SHOW: NO. -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f16-8: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B C; 4 | FOOT D C A B; 5 | LINE X C A; 6 | LINE X C B; 7 | SHOW: NO. 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f18-1: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B; 4 | ON-TLINE C B B A; 5 | LINE X A C; 6 | SHOW: NO. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f18-2: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B P; 4 | ON-LINE C B A; 5 | LINE X P C; 6 | LINE X P A; 7 | LINE X P B; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f18-3: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT A B C; 4 | ON-LINE E B A; 5 | LINE X A C; 6 | LINE X B C; 7 | LINE X E C; 8 | SHOW: NO. 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/f18-4: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT C B; 4 | ON-TLINE A C C B; 5 | FOOT D C A B; 6 | SHOW: NO. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/full-3: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT B C; 4 | ON-BLINE A B C; 5 | ON-LINE X B A; 6 | INTERSECTION-LT Y A C B B C; 7 | SHOW: NO. 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/fig-book/lc-r: -------------------------------------------------------------------------------- 1 | EXAMPLE addl 2 | HYPOTHESES: 3 | POINT O X U; 4 | ON-LINE V U X; 5 | ON-CIRCLE P O X; 6 | INTERSECTION-LC Y U X O X; 7 | SHOW: NO. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/illegal/comment.txt: -------------------------------------------------------------------------------- 1 | P_Circle??? -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/back/sim.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/ex-gao/back/sim.gex -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/d-aux: -------------------------------------------------------------------------------- 1 | 2 | d104: centroid 3 | d127: 4 | d65 5 | d94: -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/d-ax: -------------------------------------------------------------------------------- 1 | d94: 2 | d104: centroid -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/d-un: -------------------------------------------------------------------------------- 1 | d65: description, order 2 | d123 3 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/d71: -------------------------------------------------------------------------------- 1 | EXAMPLE d56 2 | HYPOTHESES: 3 | POINT A B C; 4 | FOOT D A B C; 5 | FOOT E B A C; 6 | MIDPOINT F A B; 7 | SHOW: EQANGLE A C B E D F. 8 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/ex-aux: -------------------------------------------------------------------------------- 1 | affine 2 | trap1 3 | ne2: need if ratio is not used 4 | ne4 5 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/f-un: -------------------------------------------------------------------------------- 1 | f21: * 2 | f25: * 3 | f83: * 4 | f87: * 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/f47: -------------------------------------------------------------------------------- 1 | EXAMPLE A121_81 2 | HYPOTHESES: 3 | CIRCLE A B C D; 4 | ORTHOCENTER U A B D; 5 | ORTHOCENTER V A C D; 6 | SHOW: COCIRCLE U V A D. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/m-un: -------------------------------------------------------------------------------- 1 | total: = 35 2 | 3 | m35-9 4 | m55-18 5 | 6 | m142-12 -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/m39_1: -------------------------------------------------------------------------------- 1 | EXAMPLE m39_1 2 | HYPOTHESES: 3 | POINT A B C; 4 | FOOT D A B C; 5 | FOOT E D A B; 6 | FOOT F D A C; 7 | SHOW: NO. 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/ne4: -------------------------------------------------------------------------------- 1 | EXAMPLE Nevins4 2 | HYPOTHESES: 3 | POINT A D; 4 | ON_BLINE B A D; 5 | MIDPOINT E B D; 6 | SYM C D B; 7 | SHOW: EQANGLE E A D D A C. 8 | 9 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/trap2: -------------------------------------------------------------------------------- 1 | EXAMPLE Trapzoid 2 | HYPOTHESES: POINT A B C; 3 | ON_PLINE D C A B; 4 | MIDPOINT M A C; 5 | MIDPOINT N B D; 6 | SHOW: PARALLEL M N A B. 7 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/y-aux: -------------------------------------------------------------------------------- 1 | y14-4 2 | y21-1 3 | 4 | -------------------------------------------------------------------------------- /src/main/resources/docs/examples/ex-gao/exs-base/y-un: -------------------------------------------------------------------------------- 1 | y6-1 :sss 2 | y17-9: orientation 3 | y20-11:orientation -------------------------------------------------------------------------------- /src/main/resources/docs/examples/other examples/aaaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/examples/other examples/aaaa -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/9point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/9point.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/9pt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/9pt.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/angle_less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/angle_less.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/between.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/between.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/cg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/cg.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/cg1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/cg1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/conclusion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/conclusion.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/convex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/convex.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/dis_less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/dis_less.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/duplicated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/duplicated.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/e1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/e1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/equation1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/equation1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/equation2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/equation2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/method.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/method.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/opposite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/opposite.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p11.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p13.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p14.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p15.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p16.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p17.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p18.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p19.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p3.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p4.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p4_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p4_1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p5.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p6.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p7.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/p9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/p9.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/para_inside.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/para_inside.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/same_side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/same_side.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/square.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/st.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/st.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/effects/st1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/effects/st1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_01.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_01.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_01.jp2 -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_02.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_03.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_04.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_05.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_06.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_07.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/f_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/f_08.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_01.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_02.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_03.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_c.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_c1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_c1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image4/n_m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image4/n_m.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/image6/asps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/image6/asps.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/abline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/abline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/angle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/angle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/animate_stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/animate_stop.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/autoshowstep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/autoshowstep.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/circle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/circle3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/circle3p.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/circler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/circler.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/delete16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/delete16.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/delete24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/delete24.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/drag.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/dselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/dselect.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ff.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/fillpolygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/fillpolygon.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/foot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/foot.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/fr.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/gexicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/gexicon.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/grid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/headline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/headline.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/intersect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/intersect.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/iso.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/lessGrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/lessGrid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/line.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/line_no_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/line_no_end.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/line_two_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/line_two_end.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/midpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/midpoint.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/mirror.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/mirror.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/moreGrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/moreGrid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/move.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/new.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/node_hidden.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/node_hidden.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/node_tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/node_tree.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/node_visible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/node_visible.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/open.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/open_tm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/open_tm.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/parallel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/parallel.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/parrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/parrow.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/pause.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/pentagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/pentagon.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/perp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/perp.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/play.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/point.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/polygon.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/back.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/bc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/bc.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/conc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/conc.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/cross.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/draw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/draw.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/end.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/expand.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/first.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/font.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/hook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/hook.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/last.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/more.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/pause.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/run.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/save.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/sort.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ptree/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ptree/stop.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/quadrangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/quadrangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/quit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/quit.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/ra_trapezoid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/ra_trapezoid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/rectangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/redo.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/reflect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/reflect.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/regenerate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/regenerate.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/save.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/select.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/snap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/snap.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/square.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/stop.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/text.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/translate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/translate.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/trapezoid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/trapezoid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/triangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/triangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/triangle_all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/triangle_all.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/triangle_iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/triangle_iso.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/undo.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/zoom-in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/zoom-in.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images/zoom-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images/zoom-out.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/9pt_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/9pt_full.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/abline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/abline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/aline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/aline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/angle1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/angle1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/animate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/animate.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/animation.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/bline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/bline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/circle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/circle3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/circle3p.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/circled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/circled.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/conc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/conc.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/drag.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/equal mark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/equal mark.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/fillpolygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/fillpolygon.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/fixpane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/fixpane.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/foot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/foot.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/gdd2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/gdd2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/inter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/inter.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/inter_cc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/inter_cc.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/inter_lc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/inter_lc.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/inter_ll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/inter_ll.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m3.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m4.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m5.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m6.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_m7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_m7.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/jgex_mm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/jgex_mm.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/line.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/line2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/line2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/locus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/locus.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpaneid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpaneid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu22.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu3.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu4.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mpmenu6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mpmenu6.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mppane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mppane.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mproof.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mproof.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/mtext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/mtext.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/ncheck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/ncheck.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/ndgs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/ndgs.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/parallel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/parallel.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/point.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/polynomials.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/polynomials.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/poncircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/poncircle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/ponline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/ponline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/popmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/popmenu.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/ppane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/ppane.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/ppdialog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/ppdialog.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/preference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/preference.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/preference1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/preference1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/preference2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/preference2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/preference3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/preference3.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/preferencec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/preferencec.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/pyth1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/pyth1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/radical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/radical.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/rotate.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/rotate2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/rotate2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/sangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/sangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/square.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/tcline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/tcline.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/trace.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/transform2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/transform2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/transform3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/transform3.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images2/wu1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images2/wu1.png -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/centroid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/centroid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/incenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/incenter.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/jgex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/jgex.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orient.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orient.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orient1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orient1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orient2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orient2.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orient_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orient_t.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orient_t1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orient_t1.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/orthocenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/orthocenter.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/ppane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/ppane.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images3/property.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images3/property.JPG -------------------------------------------------------------------------------- /src/main/resources/docs/help/images5/pyth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images5/pyth.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/equ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/equ.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/iso.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/rectangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/rt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/rt.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/rtriangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/rtriangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/square.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/trapezoid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/trapezoid.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/images_a/triangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/images_a/triangle.gif -------------------------------------------------------------------------------- /src/main/resources/docs/help/pdf/jar-gdbase.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/help/pdf/jar-gdbase.pdf -------------------------------------------------------------------------------- /src/main/resources/docs/import/Euler_line-Prove.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/import/Euler_line-Prove.ggb -------------------------------------------------------------------------------- /src/main/resources/docs/import/Euler_line.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/import/Euler_line.ggb -------------------------------------------------------------------------------- /src/main/resources/docs/import/Euler_line_long.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/import/Euler_line_long.ggb -------------------------------------------------------------------------------- /src/main/resources/docs/import/two_medians.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/import/two_medians.ggb -------------------------------------------------------------------------------- /src/main/resources/docs/import/two_medians_long.ggb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/import/two_medians_long.ggb -------------------------------------------------------------------------------- /src/main/resources/docs/rules/ASA.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/ASA.gex -------------------------------------------------------------------------------- /src/main/resources/docs/rules/Rule1.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/Rule1.gex -------------------------------------------------------------------------------- /src/main/resources/docs/rules/Rule2.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/Rule2.gex -------------------------------------------------------------------------------- /src/main/resources/docs/rules/Rule3.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/Rule3.gex -------------------------------------------------------------------------------- /src/main/resources/docs/rules/SAS.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/SAS.gex -------------------------------------------------------------------------------- /src/main/resources/docs/rules/SSS.gex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/rules/SSS.gex -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule01.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule02.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule03.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule04.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule05.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule06.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule07.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule08.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule09.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule10.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule11.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule12.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule13.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule14.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule15.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule16.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule17.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule18.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule19.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule20.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule21.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule22.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule23.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule24.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule25.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule26.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule27.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule28.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule29.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule30.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule31.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule32.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule33.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule34.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule35.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule36.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule37.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule38.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule39.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule40.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule41.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule42.jpg -------------------------------------------------------------------------------- /src/main/resources/docs/web/Rule43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/docs/web/Rule43.jpg -------------------------------------------------------------------------------- /src/main/resources/wprover/images/Cursor/zoom_in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/Cursor/zoom_in.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/abline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/abline.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/about/headline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/about/headline.jpg -------------------------------------------------------------------------------- /src/main/resources/wprover/images/about/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/about/welcome.jpg -------------------------------------------------------------------------------- /src/main/resources/wprover/images/angle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/angle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/animate_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/animate_start.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/animate_stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/animate_stop.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/arrow/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/arrow/end.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/arrow/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/arrow/pause.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/arrow/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/arrow/play.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/arrow/step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/arrow/step.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/arrow/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/arrow/stop.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/autoshowstep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/autoshowstep.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/circle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/circle3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/circle3p.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/circler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/circler.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/drag.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dselect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dselect.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/angle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/angle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/area.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/because.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/because.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/circle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/circle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/detail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/detail.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/downsel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/downsel.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/hence.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/hence.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/line.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/para.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/para.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/perp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/perp.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/question.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/right.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/square.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/triangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/triangle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/up.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/up1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/up1.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/warn.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/dtree/wrong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/dtree/wrong.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ff.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/fillpolygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/fillpolygon.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/foot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/foot.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/fr.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/gexicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/gexicon.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/grid.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/intersect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/intersect.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/iso.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/lessGrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/lessGrid.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/line.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/line_more_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/line_more_end.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/line_no_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/line_no_end.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/line_two_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/line_two_end.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/midpoint.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/midpoint.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/mirror.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/mirror.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/moreGrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/moreGrid.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/mouse/handtool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/mouse/handtool.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/move.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/new.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/new/Play24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/new/Play24.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/new/jlf05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/new/jlf05.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/node_tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/node_tree.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/open.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/Last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/Last.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/Save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/Save.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/array.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/array.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/arrow_up.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/close.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/collapse.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/debug.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/help.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/minus.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/pause.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/plus.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/rerun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/rerun.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/reset.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/run.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/stop.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/stop1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/stop1.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/other/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/other/undo.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/parallel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/parallel.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/parrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/parrow.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/pause.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/pentagon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/pentagon.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/perp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/perp.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/play.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/play.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/point.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/polygon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/polygon.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptbar/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptbar/close.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/back.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/bc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/bc.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/conc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/conc.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/cross.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/draw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/draw.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/end.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/first.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/font.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/hook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/hook.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/last.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/more.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/pause.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/pause.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/run.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/save.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/sort.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ptree/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ptree/stop.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/quadrangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/quadrangle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/quit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/quit.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/rectangle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/redo.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/save.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/select.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/blank.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/check.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/help.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/image.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/infor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/infor.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/new.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/open.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/poly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/poly.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/print.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/run.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/save.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/small/step.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/small/step.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/snap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/snap.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/square.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/stop.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/cir.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/cir.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/eq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/eq.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/eqq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/eqq.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/gama.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/gama.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/less.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/less.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/para.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/para.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/perp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/perp.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/symbol/sim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/symbol/sim.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/text.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ticon/hide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ticon/hide.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/ticon/show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/ticon/show.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/translate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/translate.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/trapezoid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/trapezoid.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/triangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/triangle.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/undo.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/zoom-in.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/zoom-in.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/images/zoom-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/images/zoom-out.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/gddrule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/gddrule -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/gddrule1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/gddrule1 -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/image/rule0-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/image/rule0-1.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/image/rule0-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/image/rule0-2.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/image/rule0-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/image/rule0-3.gif -------------------------------------------------------------------------------- /src/main/resources/wprover/rule/image/rule0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kovzol/Java-Geometry-Expert/73125889dea36dc1a348930051218fba737586d3/src/main/resources/wprover/rule/image/rule0.gif --------------------------------------------------------------------------------