Go to file
2024-06-05 12:51:39 -04:00
resources Init ASCII Blocky Donut 2024-04-17 02:48:27 -04:00
src baseline effort of portability 2024-05-04 20:15:07 -04:00
.clang-format Init ASCII Blocky Donut 2024-04-17 02:48:27 -04:00
.clangd deltatime handling 2024-04-23 01:08:47 -04:00
.gitignore Init ASCII Blocky Donut 2024-04-17 02:48:27 -04:00
LICENSE add basic documentation 2024-06-05 12:49:57 -04:00
makefile deltatime handling 2024-04-23 01:08:47 -04:00
README.md add note about structs 2024-06-05 12:51:39 -04:00

C Terminal 3d Renderer

Naively renders colored points to the terminal and animates them. Currently configured to display a pointcloud of a 'donut'.

This project requires GCC (clang may work) to be built and is designed to be run on linux. There is a provided makefile.

Note

In this project I used the convention of naming structs struct_t which I have learned is bad practice. Additionally, structs are typedef'd which is also bad practice.