3d Well Log Plots: Remove curve filled code

This commit is contained in:
Gaute Lindkvist
2018-05-18 11:04:42 +02:00
parent 68dd0ba13e
commit 9e665d5ab1
5 changed files with 3 additions and 156 deletions

View File

@@ -51,13 +51,6 @@ public:
};
typedef caf::AppEnum<DrawPlane> DrawPlaneEnum;
enum DrawStyle
{
LINE,
FILLED
};
typedef caf::AppEnum<DrawStyle> DrawStyleEnum;
public:
Rim3dWellLogCurve();
virtual ~Rim3dWellLogCurve();
@@ -68,7 +61,6 @@ public:
virtual QString resultPropertyString() const = 0;
DrawPlane drawPlane() const;
DrawStyle drawStyle() const;
double drawPlaneAngle() const;
cvf::Color3f color() const;
@@ -99,7 +91,6 @@ private:
void resetMinMaxValues();
protected:
caf::PdmField<DrawPlaneEnum> m_drawPlane;
caf::PdmField<DrawStyleEnum> m_drawStyle;
caf::PdmField<cvf::Color3f> m_color;
caf::PdmField<float> m_minCurveUIValue;
caf::PdmField<float> m_maxCurveUIValue;