FONT ANIMATION PROGRAM IN C
Similar Programs
- Flood Fill program in C
- Triangle Rotation Program
- Text animation program in C
- C program for fixed point scaling and rotation
- C Program for shearing of triangle, line and rectangle
- C program to plot different types of lines
- Scaling program in C
- Font animation program in C
- Midpoint ellipse drawing program in C
- Circle Midpoint program in C
- Translation program in C
- Bresenhem Circle drawing program in C
- String Generation program in C
- Bresenhem Line drawing program in C
- Plotting a pixel in C
- DDA line drawing program in C
- Boundary fill program in C
- Character Generation program in C
- Triangle Rotation program in C
//program for font animation// #include<stdlib.h> #include<stdio.h> #include<conio.h> #include<graphics.h> void main() { int gd=DETECT,gm,x=600,i; initgraph(&gd,&gm,"c:\\tc\\bgi"); for(;;x++) { x %= 250; setcolor(random(16));
circle(random(635),random(70),50); circle(random(635),random(70),50); circle(random(635),random(70),50); circle(random(635),random(70),50); circle(random(635),random(70),50); clearviewport(); settextstyle(1,0,5); setcolor(RED); outtextxy(50,415-2*x,"*AJEET*"); setcolor(GREEN); outtextxy(200,415-2*x,"*KHAN*"); setcolor(YELLOW); settextstyle(3,0,5); outtextxy(350,415-2*x,"*ROCKS*"); } getch(); }
0 comments:
Post a Comment