资源简介

非常简单的tc画图的应用 老师布置的作业,多边形扫描中的边标志填充算法

资源截图

代码片段和文件信息

#include 
#include 
#include

void drawcar(x0y0hbcarcolor)
{
setcolor(carcolor);
moveto(x0-hy0-h);
setlinestyle(001);
lineto(x0-h-by0);
lineto(x0-2*h-by0);
lineto(x0-2*h-by0+h);
lineto(x0+2*h+by0+h);
lineto(x0+2*h+by0);
lineto(x0+h+by0);
lineto(x0+hy0-h);
lineto(x0-hy0-h);
}

void drawwheel(x0y0rwheelcolor)
{
setfillstyle(1wheelcolor);
setcolor(wheelcolor);
fillellipse(x0y0rr);
}

void carfill(x0hbcarcolorincolor)
{
int xyflag;
for(x=x0-2*h-b+1;x<=x0+2*h+b-1;x++)

评论

共有 条评论