figure.h
来自「一个在电脑上运行的时钟」· C头文件 代码 · 共 25 行
H
25 行
/**
* @shaunchyxion works
* 2009.4
*/
#ifndef FIGURE_H_INCLUDE
#define FIGURE_H_INCLUDE
#include "graphics.h"
//突起的二维条形图
void upbar(int x1,int y1,int x2,int y2);
//凹陷的二维条形图
void dnbar(int x1, int y1, int x2, int y2);
//突起的二维条形图
void upbar(int x1,int y1,int x2,int y2);
//可填充的凹陷二维条形图
void dnbarfill(int x1, int y1, int x2, int y2, int color);
//突起填充的圆形
void upCircleFill(int x, int y, int r,int color);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?