fmdocvr.h

来自「3D reconstruction, medical image process」· C头文件 代码 · 共 51 行

H
51
字号
#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 + =
减小字号Ctrl + -
显示快捷键?