├── .gdbinit ├── .gitignore ├── COMMANDS.md ├── LICENSE ├── Makefile ├── README.md ├── dist ├── screenshots └── desktop │ └── 2019-06-01_1920x1080.png ├── src ├── app │ └── cli.c ├── engine │ ├── nanocad.c │ └── nanocad.h └── graphics │ ├── osifont.h │ ├── sdl_graphics.c │ └── sdl_graphics.h └── test.ncad /.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/.gdbinit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/.gitignore -------------------------------------------------------------------------------- /COMMANDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/COMMANDS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/README.md -------------------------------------------------------------------------------- /dist: -------------------------------------------------------------------------------- 1 | src/engine/ -------------------------------------------------------------------------------- /screenshots/desktop/2019-06-01_1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/screenshots/desktop/2019-06-01_1920x1080.png -------------------------------------------------------------------------------- /src/app/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/app/cli.c -------------------------------------------------------------------------------- /src/engine/nanocad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/engine/nanocad.c -------------------------------------------------------------------------------- /src/engine/nanocad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/engine/nanocad.h -------------------------------------------------------------------------------- /src/graphics/osifont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/graphics/osifont.h -------------------------------------------------------------------------------- /src/graphics/sdl_graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/graphics/sdl_graphics.c -------------------------------------------------------------------------------- /src/graphics/sdl_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/src/graphics/sdl_graphics.h -------------------------------------------------------------------------------- /test.ncad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanpc/nanoCAD/HEAD/test.ncad --------------------------------------------------------------------------------