PointPos.h
上传用户:azhong891
上传日期:2013-06-04
资源大小:197k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // PointPos.h: interface for the CPointPos class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_)
  5. #define AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. ////////////////////////////////////////////
  10. class CPointPos : public CObject  //节点
  11. {
  12. DECLARE_SERIAL(CPointPos)
  13. public:
  14. CPointPos(double x,double y);
  15. double m_y;
  16. double m_x;
  17. double m_z;
  18. double Fx;//x偏导
  19. double Fy;
  20. double nx;//法矢
  21. double ny;
  22. double nz;
  23. CPointPos();
  24. virtual ~CPointPos();
  25. virtual void Serialize(CArchive& ar);
  26. };
  27. ////////////////////////////////////////////
  28. #endif // !defined(AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_)