#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void Bresenhams(int x1,int y1,int x2,int y2,int col,int del);
void main()
{
int gd=DETECT,gm,x1,x2,y1,y2;
initgraph(&gd,&gm,"");
printf("Enter (x1,y1) and (x2,y2) : ");
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
Bresenhams(x1,y1,x2,y2,14,20);
getch();
closegraph();
}
void Bresenhams(int x1,int y1,int x2,int y2,int col,int del)
{
int dx,dy,s,x,y;
int p,tdy,tdydx;
dx=x2-x1;
dy=y2-y1;
p=2*dy-dx;
tdy=2*dy;
tdydx=2*(dy-dx);
if(x1>x2)
{
x=x2;
y=y2;
s=x1;
}
else
{
x=x1;
y=y1;
s=x2;
}
putpixel(x,y,col);
while(x<s)
{
x++;
if(p<0)
p+=tdy;
else
{
y++;
p+=tdydx;
}
putpixel(x,y,col);
delay(del);
}
}
Simple animation of random balls that bounces within the screen Source: #include<stdio.h> #include<graphics.h> #include<conio.h> #include<dos.h> #include<math.h> void drawBall(struct ball *b, int color); struct ball{ int x, y; int dx, dy; int radius; }; void main() { int gd=0, gm=VGAHI; int i; struct ball b[10]; initgraph(&gd, &gm, ""); for(i=1;i<=15;i++){ b[i].radius = rand()%20; b[i].x=rand()%getmaxx(); b[i].y=rand()%getmaxy(); b[i].dx=2; b[i].dy=4; } while(!kbhit()) { delay(5); cleardevice(); for(i=1;i<=15;i++) drawBall(&b[i],i); } closegraph(); } void drawBall(struct ball *b, int color){ setfillstyle(1,color); setcolor(color); fillellipse(b->x, b->y, b->radius, b->radius); if(b->x+b->radius > getmaxx() || b->x-b->radius<0) b->dx = -b->dx; if(b->y+b->radius > getmaxy() || b->y-b->radius<0) b->dy = -b->dy; b->x+=b-...
Comments
Post a Comment