This is a collection of source files containing many functions I've written for small animations using SDL and the C programming language.
I started learning to use SDL for basic graphics programs. One of my first goals was trying to figure out how to draw regular polygons. However there is no built in way to do such things. By combining the base SDL library with SDL_gfx, I was able to draw filled polygons the way that I like. However the code required to get the X and Y coordinates of each corner of the polygon was written by me.
There are many source files in this project and they all have their unique purpose and are in constant change as I fix bugs and add new functions which do new things.
One of my latest additions was using SDL_ttf to write text onto the screen with my custom messages.
Because my code is a bit disorganized it might be difficult if not impossible for others to figure out how to use it unless I write an official documentation.
Features
- SDL
- polygons