I am building a game and the main character's arm will be following the mouse cursor, so it will be rotating quite frequently. What would be the best way to rotate it?
|
|
With SDL you have a few choices.
Option 3 is probably your best bet because you gain all of the advantages of using OpenGL. It's really up to you how to want to do it. It's also a possibility that you can load your sprites, perform all rotation calculations with SDL_gfx and then save the rotated versions to a SDL_Surface in memory. EDIT: In response to your comment I would recommend checking out this GPWiki tutorial about using OpenGL with SDL. It doesn't cover rotation but it does cover basic set up and drawing. There is an OpenGl function, |
||||||
|
|
|
You can use a library like SDL_gfx |
||
|
|
