├── .gitignore ├── LICENSE.txt ├── README.md ├── assets └── screenshot.png ├── config.nims ├── graphing.nimble └── src ├── algebra.nim └── graphing.nim /.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | graphing 3 | algebra 4 | test.json 5 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- 1 | --d:"adwminor=4" 2 | -------------------------------------------------------------------------------- /graphing.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/graphing.nimble -------------------------------------------------------------------------------- /src/algebra.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/src/algebra.nim -------------------------------------------------------------------------------- /src/graphing.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/can-lehmann/Graphing/HEAD/src/graphing.nim --------------------------------------------------------------------------------