├── .gitattributes ├── .gitignore ├── LaunchCurveGenerator.bat ├── LaunchCurveGenerator.sh ├── README.md ├── high-school-plotting ├── LICENSE ├── Setup.hs ├── css │ ├── style.css │ └── widgets.css ├── high-school-plotting.cabal ├── src │ ├── Math │ │ ├── CurveGenerator.hs │ │ ├── GeneratorTools.hs │ │ ├── PSTricksGenerator.hs │ │ ├── SVGGenerator.hs │ │ └── TikzGenerator.hs │ ├── manualCompilation.sh │ └── test.hs ├── todo.org └── uiSrc │ ├── Main.hs │ └── Widgets.hs ├── stack.yaml └── testDir ├── autosave.session └── css ├── style.css └── widgets.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.svg 3 | dist/ 4 | *~ 5 | .cabal-sandbox 6 | .stack-work 7 | .#* -------------------------------------------------------------------------------- /LaunchCurveGenerator.bat: -------------------------------------------------------------------------------- 1 | start http://localhost:51333 2 | curveWebUI . -------------------------------------------------------------------------------- /LaunchCurveGenerator.sh: -------------------------------------------------------------------------------- 1 | firefox http://localhost:51333 & 2 | curveWebUI . 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/README.md -------------------------------------------------------------------------------- /high-school-plotting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/LICENSE -------------------------------------------------------------------------------- /high-school-plotting/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /high-school-plotting/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/css/style.css -------------------------------------------------------------------------------- /high-school-plotting/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/css/widgets.css -------------------------------------------------------------------------------- /high-school-plotting/high-school-plotting.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/high-school-plotting.cabal -------------------------------------------------------------------------------- /high-school-plotting/src/Math/CurveGenerator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/Math/CurveGenerator.hs -------------------------------------------------------------------------------- /high-school-plotting/src/Math/GeneratorTools.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/Math/GeneratorTools.hs -------------------------------------------------------------------------------- /high-school-plotting/src/Math/PSTricksGenerator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/Math/PSTricksGenerator.hs -------------------------------------------------------------------------------- /high-school-plotting/src/Math/SVGGenerator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/Math/SVGGenerator.hs -------------------------------------------------------------------------------- /high-school-plotting/src/Math/TikzGenerator.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/Math/TikzGenerator.hs -------------------------------------------------------------------------------- /high-school-plotting/src/manualCompilation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/manualCompilation.sh -------------------------------------------------------------------------------- /high-school-plotting/src/test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/src/test.hs -------------------------------------------------------------------------------- /high-school-plotting/todo.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/todo.org -------------------------------------------------------------------------------- /high-school-plotting/uiSrc/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/uiSrc/Main.hs -------------------------------------------------------------------------------- /high-school-plotting/uiSrc/Widgets.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/high-school-plotting/uiSrc/Widgets.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/stack.yaml -------------------------------------------------------------------------------- /testDir/autosave.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/testDir/autosave.session -------------------------------------------------------------------------------- /testDir/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/testDir/css/style.css -------------------------------------------------------------------------------- /testDir/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chaddai/CurveProject/HEAD/testDir/css/widgets.css --------------------------------------------------------------------------------