C語言fillpoly函數詳解_C 語言

來源:互聯網
上載者:User

C語言中,fillpoly函數的功能是畫一個多邊形,今天我們就來學習學習。

C語言fillpoly函數:填充一個多邊形

函數名:fillpoly

功  能:畫並填充一個多邊形

標頭檔:#include <graphics.h>

原  型:fillpoly(int numpoints, int far *polypoints);

參數說明:numpoints 為多邊形的邊數;far *polypoints 為儲存各頂點座標的數組,每兩個一組表示一個頂點的 X 和 Y 座標。

執行個體代碼:

#include <graphics.h>#include <stdlib.h>#include <stdio.h>#include <conio.h> int main(void){ /* request auto detection */ int gdriver = DETECT, gmode, errorcode; int i, maxx, maxy;  /* our polygon array */ int poly[8];  /* initialize graphics, local variables */ initgraph(&gdriver, &gmode, "");  /* read result of initialization */ errorcode = graphresult(); if (errorcode != grOk) /* an error occurred */ { printf("Graphics error: %s\n", grapherrormsg(errorcode)); printf("Press any key to halt:"); getch(); exit(1); /* terminate with an error code */ }  maxx = getmaxx(); maxy = getmaxy();  poly[0] = 20; /* 1st vertext */ poly[1] = maxy / 2;  poly[2] = maxx - 20; /* 2nd */ poly[3] = 20;  poly[4] = maxx - 50; /* 3rd */ poly[5] = maxy - 20;  /* 4th vertex. fillpoly automatically closes the polygon. */ poly[6] = maxx / 2; poly[7] = maxy / 2;  /* loop through the fill patterns */ for (i=EMPTY_FILL; i<USER_FILL; i++) { /* set fill pattern */ setfillstyle(i, getmaxcolor());  /* draw a filled polygon */ fillpoly(4, poly);  getch(); }  /* clean up */ closegraph(); return 0;}

註:fillpoly 函數是 TC 編譯環境下的函數,VC 中無法使用。

以上就是關於fillpoly函數填充多邊形功能的實現代碼,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.