My toy generative art project written in C with the SDL library
Read the blog post about this project here
Linking the SDL_2 library can be a bit of a challenge. I recommend you find out yourself how to do that for your system. Here is what worked on my mac with homebrew
:
brew install sdl2
gcc src/**/*.c -I/opt/homebrew/include/SDL2 -D_THREAD_SAFE -L/opt/homebrew/lib -lSDL2 -o artgen
./artgen piece_id
E.g.
./artgen square_rotations
This project is licensed under the MIT License - see the LICENSE file for details.