How To Create Tan Graph Animation in C Or C++ (Computer Graphics)

                                                                       PROJECT BY

(SIMPLIFY LEARN PROGRAMMING) 

ON

TAN GRAPH ANIMATION


SOURCE CODE:

#include<conio.h>

#include<math.h>

#include<graphics.h>

#include<dos.h>

void main()

{

int gd=DETECT,gm;

int angle=0;

double x,y;

initgraph(&gd,&gm,"C:\\TC\\BGI");

line(0,getmaxy()/2,getmaxx(),getmaxy()/2);

for(x=0;x<getmaxx();x++)

{

y=50*tan(angle*3.141/180);

y=getmaxy()/2-y;

putpixel(x,y,15);

delay(50);

angle+=2;

}

getch();

closegraph();

}

OUTPUT:



Comments

Post a Comment

Popular posts from this blog

How To Draw a Butterfly Animation in C (Computer Graphics)

How To Draw Sunrise Animation in C++ (Computer Graphics)

How To Draw a Bouncing Ball Animation in C++ (Computer Graphics)