Home Forums C Programming animation Reply To: animation

#3227
will
Participant

Hello
Here is a portion of a program for “Bank managgement system” which I worte while I was in my Bachelors of IT. To make an animation in C Language you will need to create the image at run time and move that image on the screen. What i have done is created a bitmap using circles, arcs & different colors, and tried to make some sort of a logo, then put the whole graphics area in an image using getimage() function & used putimage() to show the image on the screen. To make an animation in C Language I have put this image in a loop which animates the image  on the screen in scrolling mode.

 
Also I have made another animation which makes a complete line from a single point.

 
And at the end I have made another animation effect using the line() function again.

 
Below is the main source code of the complete animation. You can modify it according to your needs.