You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
#include "GlobalDefine.h"
|
|
|
|
|
|
//测量管理对象(使用平台和CCD 来测量距离和角度)
|
|
class CMeasureMgr
|
|
{
|
|
public:
|
|
CMeasureMgr(void);
|
|
~CMeasureMgr(void);
|
|
void CatchPt();
|
|
void SetNewPt(Dbxy pt);
|
|
private:
|
|
bool m_bSelFirstPt;//是否设置了第一个点
|
|
Dbxy m_OldPt;//之前的采集点坐标
|
|
};
|
|
|
|
extern CMeasureMgr gMeasureMgr; |