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.
27 lines
807 B
C
27 lines
807 B
C
4 days ago
|
#ifndef NMCALCULATIONGEO_H
|
||
|
#define NMCALCULATIONGEO_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QPointF>
|
||
|
#include "nmCalculationGeoDataOutline.h"
|
||
|
#include "nmCalculationGeoDataWell.h"
|
||
|
|
||
|
class nmCalculationGeo
|
||
|
{
|
||
|
public:
|
||
|
// nmCalculationGeo();
|
||
|
// 构造函数
|
||
|
nmCalculationGeo(const nmCalculationGeoDataOutline &outline, const QVector<nmCalculationGeoDataWell>& wellList, double lc);
|
||
|
void generate2DFile(const QString& outputFileName);
|
||
|
void generate3DFile(const QString& outputFileName);
|
||
|
private:
|
||
|
QString generateOCCGeoCodes(bool is3D = true);
|
||
|
|
||
|
//基础网格大小设置
|
||
|
nmCalculationGeoDataOutline m_outline;//存储多边形的点
|
||
|
QVector<nmCalculationGeoDataWell> m_vWellList; // 存储圆心数据
|
||
|
double m_dGridSize;// 基础网格大小设置
|
||
|
};
|
||
|
|
||
|
#endif // NMCALCULATIONGEO_H
|