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

📄 figure.h

📁 这也是基于博创公司ARM3000平台设计的综合实验源代码-计算器
💻 H
字号:
#ifndef __FIGURE_STRUCT_H__
#define __FIGURE_STRUCT_H__

#include "..\inc\def.h"

typedef struct {
	int cx;
	int cy;
}structSIZE;

typedef struct {
	int left;
	int top;
	int right;
	int bottom;
}structRECT;

void CopyRect(structRECT* prect1, structRECT* prect2);
void SetRect(structRECT* prect, int left, int top, int right, int bottom);
void InflateRect(structRECT* prect, int cx,int cy);
U8 IsInRect(structRECT *prect, int x, int y);

#endif

⌨️ 快捷键说明

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