InputPoint.h
上传用户:zj_jiuzhou
上传日期:2022-06-20
资源大小:1859k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // InputPoint.h: interface for the CInputPoint class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_)
  5. #define AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CInputPoint : public CObject  
  10. {
  11. public:
  12. CInputPoint();
  13. virtual ~CInputPoint();
  14.     int m_nOrderNum;//point order number
  15. double m_LeftHorizontalAngle;//左站水平角   
  16. double m_RightHorizontalAngle;//右站水平角
  17. double m_LeftZenithdistance;//左站天顶距
  18. double m_RightZenithdistance;//右站天顶距
  19. double X;
  20. double Y;
  21. double Z;//三维坐标
  22. };
  23. #endif // !defined(AFX_INPUTPOINT_H__9FA0D2EC_E5BB_4DEA_80D2_A5CCAFD14FB4__INCLUDED_)