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.
29 lines
589 B
C++
29 lines
589 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
using namespace::std;
|
|
class CFaultLine;
|
|
class CCurveEx;
|
|
|
|
/* @brief 断层与联线的管理类 */
|
|
class CFaultLineConMgr
|
|
{
|
|
public:
|
|
CFaultLineConMgr(void);
|
|
~CFaultLineConMgr(void);
|
|
|
|
void SetFaultLine(CFaultLine *pFaultLine);
|
|
void SetLeftLines(vector<CCurveEx *> &lines);
|
|
void SetRightLines(vector<CCurveEx *> &lines);
|
|
|
|
/* @brief 更新两侧曲线位置 */
|
|
void UpdateLines();
|
|
|
|
protected:
|
|
CFaultLine *m_pFaultLine;
|
|
vector<CCurveEx *> m_leftLines;
|
|
vector<CCurveEx *> m_rightLines;
|
|
vector<double> m_positions; ///< 地层线与断层线相交的位置
|
|
};
|
|
|