bar3d
计算机函数
bar3d,计算机函数,用来画一个三维条形图。
用 法:
void far bar3d(
int left, int top,// 三维空间矩形长条图正面的左上角坐标
int right, int bottom, //三维空间矩形长条图正面的右下角坐标
int depth, //三维空间矩形长条图的深度(即阴影)
int topflag//设置是否绘制三维空间矩形长条图的顶部
);
程序例:
#include <graphics.h>
#include
#include
#include
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int midx, midy, i;
/* initialize graphics, local variables */
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
getch();
exit(1); /* terminate with error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
/* loop through the fill patterns */
for (i=EMPTY_FILL; i
{
/* set the fill style */
setfillstyle(i, getmaxcolor());
/* draw the 3-d bar */
bar3d(midx-50, midy-50, midx+50, midy+50, 10, 1);
getch();
}
/* clean up */
closegraph();
return 0;
}
参考资料
最新修订时间:2022-05-28 19:28
目录
概述
参考资料