圓弧在圖形中非常常見,因為它們是複雜形狀的構建塊。製作圓弧非常簡單,因為我們隻需要調用一個函數。
製作一個的函數arc()
, 接受五個參數x
,y
坐標、起始角、終止角和半徑。這將使弧將所有值都很好。下麵的示例處理所有這些事情,因為它實現了四個弧。
你應該總是使用getch()
函數來凍結屏幕,以便您可以看到輸出。該arc()
函數來自graphics.h
文件,該文件應包含在程序文件中。
graphics.h - C 中的 arc() 函數示例
#include <graphics.h>
#include <conio.h>
int main()
{
//initilizing graphic driver and
//graphic mode variable
int graphicdriver=DETECT,graphicmode;
//calling initgraph with parameters
initgraph(&graphicdriver,&graphicmode,"c:\\turboc3\\bgi");
//Printing message for user
outtextxy(10, 10 + 10, "Program to draw arcs of diffrent sizes in C graphics");
// creating arcs using arc function.
arc(100, 100, 0, 100, 50);
arc(250, 100, 0, 150, 50);
arc(400, 100, 0, 200, 50);
arc(550, 100, 0, 250, 50);
getch();
return 0;
}
輸出
相關用法
- C語言 atan2()用法及代碼示例
- C語言 abs()用法及代碼示例
- C語言 asin()用法及代碼示例
- C語言 atan()用法及代碼示例
- C語言 acos()用法及代碼示例
- C語言 assert()用法及代碼示例
- C語言 asctime()、asctime_s()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 imagesize()用法及代碼示例
- C語言 getarcoords()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 setlinestyle()用法及代碼示例
- C語言 showbits()用法及代碼示例
- C語言 sprintf()用法及代碼示例
- C語言 outtextxy()用法及代碼示例
- C語言 isgraph()用法及代碼示例
- C語言 grapherrormsg()用法及代碼示例
- C語言 moveto()用法及代碼示例
- C語言 putchar()用法及代碼示例
注:本文由純淨天空篩選整理自Manu Jemini大神的英文原創作品 arc() function of graphics.h in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。