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.
38 lines
793 B
C++
38 lines
793 B
C++
/*! @file
|
|
********************************************************************************
|
|
<PRE>
|
|
模块名 : NWell
|
|
文件名 : TrackPoint.h
|
|
相关文件 :
|
|
文件实现功能: 井身轨迹点类
|
|
作者 :
|
|
版本 :
|
|
--------------------------------------------------------------------------------
|
|
备注 :
|
|
--------------------------------------------------------------------------------
|
|
修改记录:
|
|
日期 版本 修改人 修改内容
|
|
</PRE>
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#if !defined(_TRACKPOINT_H)
|
|
#define _TRACKPOINT_H
|
|
|
|
namespace NWell
|
|
{
|
|
|
|
class CTrackPoint {
|
|
public:
|
|
double m_dDepth;
|
|
double m_dAzimuth;
|
|
double m_dBevel;
|
|
double m_dVertDepth;
|
|
double m_dDX;
|
|
double m_dDY;
|
|
};
|
|
|
|
};
|
|
|
|
#endif //_TRACKPOINT_H
|