⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graphlib.h

📁 经典数据结构书籍 数据结构C++语言描述 的源代码 很难找的哦
💻 H
字号:
#ifndef GRAPHLIB
#define GRAPHLIB

void DrawPoint(float x, float y);
void DrawLine(float x1, float y1, float x2, float y2);
void DrawRectangle(float left, float top, float right, float bottom);
void DrawCircle(float x, float y, float r);
void DrawPoly(float horz[], float vert[], float n);

void SetFillStyle(int pattern);
void InitGraphics(void);        // Initialize the drawing surface
void ShutdownGraphics(void);    // Close the drawing surface
void ViewPause(void);           // Wait until a key or the mouse is pressed

#include "graphlib.cpp"

#endif // GRAPHLIB

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -