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

📄 box.h

📁 Julia集的分形算法
💻 H
字号:
#ifndef _BOX__
#define _BOX__

class CBox  
{
public:
//	CBox();
	CBox(COLORREF color=RGB(0xFF, 0, 0));
	virtual ~CBox();
	void Reset();
	void Draw(HDC hDC,RECT Rect);
	void SetColor(COLORREF color);
	void MKPoint(POINT& pt,int x,int y);
	void MyRectangle(HDC hdc,int left,int top,int right,int bottom);
	
private:
	RECT last_Rect;
	BOOL bHasBox;
private:
	void OverPreDraw(HDC hDC);
	HPEN hPen;
	COLORREF m_Color;

};

#endif 

⌨️ 快捷键说明

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