[求助]C图形函数-->unicorn转移
想让2 个小求从两端向中间滚动,碰撞时再分开,并循环几次
这样的函数应该怎么样写
还有 imagesize(left,top,right,bottom);
getimage();
putimage();
函数的具体意思是什么
有知道这个程序的请写下
谢谢了
我现在把代码写下
#include<stdio.h>
#include<graphics.h>
#include<stdlib.h>
main()
{int gd=DETECT,gm,i,k,l;
void *buf,*buf1;
initgraph(&gd,&gm,"");
circle(51,400,50);
setfillstyle(1,5);
floodfill(51,400,15);
setbkcolor(6);
k=imagesize(0,350,102,450);
buf=malloc(k);
getimage(0,350,102,450,buf);
circle(549,400,50);
setfillstyle(1,5);
floodfill(549,400,15);
l=imagesize(498,350,600,450);
buf1=malloc(l);
getimage(498,350,600,450,buf1);
for(i=0;i<199;i++)
{putimage(i,350,buf,COPY_PUT);
putimage(498-i,350,buf1,COPY_PUT);
}
/* getch(); */
for(i=0;i<199;i++)
{putimage(199-i,350,buf,COPY_PUT);
putimage(300+i,350,buf1,COPY_PUT);}
}
就这些 呵呵 谢谢了