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

📄 fmdocvr.h

📁 3D reconstruction, medical image processing from colons, using intel image processing for based clas
💻 H
字号:
#ifndef __FMDOCVR_H__#define __FMDOCVR_H__// This trick is used so the VR-doc isn't// instantiated until someone actually requests it.#define	theFMDocVR	(RxFMDocVR::GetFMDocVR())#define MPR_CIRCLE_RADIUS		15typedef struct{	CPoint		ptCenter;	CPoint		ptCenterSlant;	int			iCircleAngle;	int			iSelected;} _3DMPR_INFO, *_3DMPR_INFO_PTR;class RxFMDocVR{public:	RxFMDocVR();	static RxFMDocVR&	GetFMDocVR	();/////////////////////////////////////////////////////////////////////////////public :	int					m_iVRZoomFactor;/////////////////////////////////////////////////////////////////////////////protected :	_3DMPR_INFO			m_stMPR;public :	void				MPR_Set_Struct			(_3DMPR_INFO_PTR stPtrMPR);	void				MPR_Set_Center			(LPPOINT ptCenter);	void				MPR_Set_Center_Slant	(LPPOINT ptCenterSlant);	void				MPR_Set_Circle_Angle	(int iCircleAngle);	void				MPR_Set_Selected		(int iSelected);	_3DMPR_INFO_PTR		MPR_Get_Struct			();	LPPOINT				MPR_Get_Center			();	LPPOINT				MPR_Get_Center_Slant	();	int					MPR_Get_Circle_Angle	();	int					MPR_Get_Selected		();	void				MPR_Initialize			(CSize szWindow);	void				MPR_GetSlantPoint		(LPPOINT ptStart, LPPOINT ptEnd, CSize szWindow);	int					MPR_HitTest				(LPPOINT point);};#endif  __FMDOCVR_H__

⌨️ 快捷键说明

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