129.飘带图案
Posted 程序员编程指南
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了129.飘带图案相关的知识,希望对你有一定的参考价值。
/* linesin */
#include <graphics.h>
#include <math.h>
#define PI 3.1415926
void main()
double a;
int x1,y1,x2,px=320,py=240;
int gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,"c:\\\\tc");
cleardevice();
setcolor(4);
outtextxy(80,20,"This program show the Linesin picture.");
for(a=0;a<=PI;a+=PI/380)
x1=px+280*cos(1.6*a);
y1=479-((90*sin(8*a))*cos(a/2.5)+py);
x2=py+280*cos(1.8*a);
line(x1,y1,x2,y1);
outtextxy(80,460,"Press any key to quit...");
getch();
closegraph();
以上是关于129.飘带图案的主要内容,如果未能解决你的问题,请参考以下文章