├── Executables ├── linux_distro │ └── trycl └── windows_64 │ └── Graphulator.exe ├── GRAPHULATOR_Source ├── .idea │ ├── .name │ ├── codeStyles │ │ └── Project.xml │ ├── misc.xml │ ├── modules.xml │ ├── trycl.iml │ └── workspace.xml ├── CMakeLists.txt ├── GRAPHULATOR ├── expression │ ├── addExpression.h │ ├── baseExpression.h │ ├── divideExpression.h │ ├── expressions.h │ ├── lnExpression.h │ ├── logExpression.h │ ├── modExpression.h │ ├── multiplyExpression.h │ ├── numberExpression.h │ ├── powExpression.h │ ├── rpnBuilder.cpp │ ├── rpnBuilder.h │ ├── subtractExpression.h │ ├── token.cpp │ ├── token.h │ ├── trigExpression.h │ └── variableExpression.h ├── glut.h ├── main.cpp └── md_res │ ├── five.png │ ├── four.png │ ├── one.png │ ├── three.png │ └── two.png ├── LICENSE ├── README.md ├── Report ├── DOCUMENTATION-1final.pdf ├── DOCUMENTATION.docx ├── Presentation.pdf └── Presentation.pptx ├── build.sh └── todo.readme /Executables/linux_distro/trycl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRLannister/Graphical-Calculator-OpenGL-CPlusPlus/24937f685051a89fa71f015c1dd779eaf1710b9b/Executables/linux_distro/trycl -------------------------------------------------------------------------------- /Executables/windows_64/Graphulator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRLannister/Graphical-Calculator-OpenGL-CPlusPlus/24937f685051a89fa71f015c1dd779eaf1710b9b/Executables/windows_64/Graphulator.exe -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/.name: -------------------------------------------------------------------------------- 1 | trycl -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/trycl.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GRAPHULATOR_Source/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 75 | 76 | 77 | 78 | 79 | true 80 | DEFINITION_ORDER 81 | 82 | 83 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 |