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

📄 drawer.h

📁 Julia集的分形算法
💻 H
字号:
// Drawer.h: interface for the Drawer class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_)
#define AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class Drawer
{
public:
	Drawer(HDC hDC);
	~Drawer();
	void Enlarge(RECT rt);
	void Reset();
	void DrawJulia(HDC hDC);
	void Resize(HDC hDC,RECT Rect);
public:
	BOOL SaveBMP();
	void DrawTnCurve(HDC hDC);
	RECT m_Rect;
	int m_times;
	double m_OutR;
	float nEnlarge;
	float Large;
	
private:
	HBITMAP m_hBitmap;
	HDC m_hDC;
	BOOL bReDraw;
	ParaWin ParaWindow;
};


#endif // !defined(AFX_DRAWER_H__CD23DB22_B175_4095_A8BA_1989DE5E9013__INCLUDED_)

⌨️ 快捷键说明

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