利用x*x+y*y=r*r的方程式,依次變換x,可以得出一系列點(x,y),這些點組成的就是一個圓。
站在用戶的角度思考問題,與客戶深入溝通,找到寧洱網(wǎng)站設(shè)計與寧洱網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站設(shè)計制作、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名申請、網(wǎng)頁空間、企業(yè)郵箱。業(yè)務(wù)覆蓋寧洱地區(qū)。
#include math.h#include stdio.h#define R 10 ? ?//半徑 #define X 10 ? ?//圓心x坐標(biāo) #define Y 10 ? ?//圓心Y坐標(biāo) int main(void)
{ ? ?int x,y; ? ?int m; ? ?int i; ? ?for(i=Y-R;i=1;i--)
{ ? ? ? ?printf("\n");
}
for(y=R;y=-R;y--)
{
? ?m=2*sqrt(R*R - y*y); ? ?//橫坐標(biāo)的偏移量,因為字體長寬比例為2,所以要乘2
? ?for(x=1;xX+R-m;x++) ? ? ? ?//打印左半圓
? ?{ ? ? ? ? ? ?printf(" "); ? ?
? ?} ? ? ? ?printf("*"); ? ? ? ?for(;xX+R+m;x++) ? ? ? ? ? //打印右半圓
? ?{ ? ? ? ? ? ?printf(" ");
? ?} ? ? ? ?printf("*\n");
}
}
#include math.h
#include graphics.h /*預(yù)定義庫函數(shù)*/
void circlePoint(int x,int y) /*八分法畫圓程序*/
{
circle(320+x*20,240+y*20,3);
circle(320+y*20,240+x*20,3);
circle(320-y*20,240+x*20,3);
circle(320-x*20,240+y*20,3);
circle(320-x*20,240+y*20,3);
circle(320-x*20,240-y*20,3);
circle(320-y*20,240-x*20,3);
circle(320+y*20,240-x*20,3);
circle(320+x*20,240-y*20,3);
}
void MidBresenhamcircle(int r) /* 中點Bresenham算法畫圓的程序 */
{
int x,y,d;
x=0;y=r;d=1-r; /* 計算初始值 */
while(xy)
{ circlePoint(x,y); /* 繪制點(x,y)及其在八分圓中的另外7個對稱點 */
if(d0) d+=2*x+3; /* 根據(jù)誤差項d的判斷,決定非最大位移方向上是走還是不走 */
else
{ d+=2*(x-y)+5;
y--;
}
x++;
delay(900000);
} /* while */
}
main()
{
int i,j,r,graphmode,graphdriver;
detectgraph(graphdriver,graphmode);
initgraph(graphdriver,graphmode," ");
printf("中點Bresenhamcircle算法畫圓的程序\n"); /*提示信息*/
printf("注意 |r|=11");
printf("\n輸入半徑值 r:");
scanf("%d",r);
printf("按任意鍵顯示圖形...");
getch();
cleardevice();
setbkcolor(BLACK);
for(i=20;i=620;i+=20) /*使用雙循環(huán)畫點函數(shù)畫出表格中的縱坐標(biāo)*/
for(j=20;j=460;j++)
putpixel(i,j,2);
for(j=20;j=460;j+=20) n歡迎光臨學(xué)網(wǎng),收藏本篇文章 [1] [2]
$False$
bsp; /*使用雙循環(huán)畫點函數(shù)畫出表格中的橫坐標(biāo)*/
for(i=20;i=620;i++)
putpixel(i,j,2);
outtextxy(320,245,"0"); /*原點坐標(biāo)*/
outtextxy(320-5*20,245,"-5");circle(320-5*20,240,2); /*橫坐標(biāo)值*/
outtextxy(320+5*20,245,"5");circle(320+5*20,240,2);
outtextxy(320-10*20,245,"-10");circle(320-10*20,240,2);
outtextxy(320+10*20,245,"10");circle(320+10*20,240,2);
outtextxy(320-15*20,245,"-15");circle(320-15*20,240,2);
outtextxy(320+15*20,245,"15");circle(320+15*20,240,2);
outtextxy(320,240-5*20,"-5");circle(320,240-5*20,2); /*縱坐標(biāo)值*/
outtextxy(320,240+5*20,"5");circle(320,240+5*20,2);
outtextxy(320,240-10*20,"-10");circle(320,240-10*20,2);
outtextxy(320,240+10*20,"10");circle(320,240+10*20,2);
outtextxy(20,10,"The center of the circle is (0,0) "); /*坐標(biāo)軸左上角顯示提示信息*/
setcolor(RED); /*標(biāo)記坐標(biāo)軸*/
line(20,240,620,240); outtextxy(320+15*20,230,"X");
line(320,20,320,460); outtextxy(330,20,"Y");
setcolor(YELLOW);
MidBresenhamcircle(r);
setcolor(BLUE); /*繪制圓*/
circle(320,240,r*20);
setcolor(2);
getch();
closegraph();
}
graphics.h 是 tc 下的,vc 下你安裝了 easyx 也就有了,然后畫圓這樣:
#include graphics.h // 引用圖形庫
#include conio.h
void main()
{
initgraph(640, 480); // 初始化圖形窗口
circle(100, 100, 60); // 畫圓,圓心(100, 100),半徑 60
getch(); // 按任意鍵繼續(xù)
closegraph(); // 關(guān)閉圖形界面
}