InputPoint.h
上传用户:zj_jiuzhou
上传日期:2022-06-20
资源大小:1859k
文件大小:1k
- // InputPoint.h: interface for the CInputPoint class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_)
- #define AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CInputPoint : public CObject
- {
- public:
- CInputPoint();
- virtual ~CInputPoint();
- int m_nOrderNum;//point order number
- double m_LeftHorizontalAngle;//左站水平角
- double m_RightHorizontalAngle;//右站水平角
- double m_LeftZenithdistance;//左站天顶距
- double m_RightZenithdistance;//右站天顶距
- double X;
- double Y;
- double Z;//三维坐标
- };
- #endif // !defined(AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_)