标题:关于floodfill填充问题
取消只看楼主
cordier
Rank: 2
等 级:论坛游民
威 望:1
帖 子:449
专家分:14
注 册:2006-2-9
结帖率:60%
 问题点数:0 回复次数:1 
关于floodfill填充问题

#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>

int main(void)
{
int gdriver = DETECT, gmode, errorcode;
int i,j,per=20;
int m=4,n=3;
initgraph(&gdriver, &gmode, "");
errorcode = graphresult();
if (errorcode != grOk)
{
printf("Graphics error: %s\n",grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1);
}
setcolor(5);
rectangle(0,0,n*per,m*per);
for (i=1;i<m;i++)
line(0,i*per,n*per,i*per);
for (i=1;i<n;i++)
line(i*per,0,i*per,m*per);
getch();
for (i=0;i<m;i++)
for (j=0;j<n;j++)
floodfill(j*per+0.5*per,i*per+0.5*per,getmaxcolor());
getch();
closegraph();
}


我的目的是:每一个小格中以白色填充。

搜索更多相关主题的帖子: floodfill 
2006-03-22 08:19
cordier
Rank: 2
等 级:论坛游民
威 望:1
帖 子:449
专家分:14
注 册:2006-2-9
得分:0 

击中要害。
谢谢。


2006-03-23 08:56



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-51938-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.406011 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved