画心程序1 C语言 画心

时间:2022-05-19 20:26:13 阅读: 最新文章 文档下载
说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。
.

通过Windows编程,利用余弦函数实现。 #include #include #include #include #include #define a 60

#define PI 3.1415926 float th=PI/180; void StartPic(void) {

int gr=DETECT,gm;

initgraph(&gr,&gm,"c://turboc2"); cleardevice(); }

void ClosePic(void) { getch(); //restorecrtmode(); }

void DrawXin(int x0,int y0,int k) {

float i,x,y,tx,ty;

for(i=-180.0;i<=180.0;i+=0.01) {x=a*(2*cos(i*th)-cos(2*i*th)); y=a*(2*sin(i*th)-sin(2*i*th)); tx=x; ty=y;

x=tx*cos(k*th)-ty*sin(k*th)+x0; y=y0-(ty*cos(k*th)+tx*sin(k*th)); putpixel(x,y,RED);} setfillstyle(1,RED); floodfill(320,240,RED); }

void main(void) {StartPic();

DrawXin(320,240,90); ClosePic(); }

精品


.



如有侵权请联系告知删除,感谢你们的配合!



精品


本文来源:https://www.wddqw.com/doc/140471c9bc64783e0912a21614791711cd7979d7.html