PointPos.h
上传用户:azhong891
上传日期:2013-06-04
资源大小:197k
文件大小:1k
- // PointPos.h: interface for the CPointPos class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_)
- #define AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- ////////////////////////////////////////////
- class CPointPos : public CObject //节点
- {
- DECLARE_SERIAL(CPointPos)
- public:
- CPointPos(double x,double y);
- double m_y;
- double m_x;
- double m_z;
- double Fx;//x偏导
- double Fy;
- double nx;//法矢
- double ny;
- double nz;
- CPointPos();
- virtual ~CPointPos();
- virtual void Serialize(CArchive& ar);
- };
- ////////////////////////////////////////////
- #endif // !defined(AFX_POINTPOS_H__8BFDEC3C_B5F7_11D3_AB59_080039014899__INCLUDED_)