3D Well Log Curves(#2678): Remove curve drawing options that aren't yet implemented.

* drawing style (i.e. filled)
* coloring style (i.e. color by curve value)
This commit is contained in:
Gaute Lindkvist
2018-04-17 08:43:08 +02:00
parent 1180c199b4
commit 290d58e7fd
2 changed files with 1 additions and 55 deletions

View File

@@ -43,19 +43,6 @@ public:
CAMERA_ALIGNED_SIDE2
};
enum DrawStyle
{
LINE,
FILLED
};
enum ColoringStyle
{
SINGLE_COLOR,
CURVE_VALUE,
OTHER_RESULT
};
public:
Rim3dWellLogCurve();
virtual ~Rim3dWellLogCurve();
@@ -63,8 +50,6 @@ public:
void updateCurveIn3dView();
DrawPlane drawPlane() const;
DrawStyle drawStyle() const;
ColoringStyle coloringStyle() const;
cvf::Color3f color() const;
bool isShowingCurve() const;
@@ -80,8 +65,6 @@ protected:
protected:
caf::PdmField<QString> m_name;
caf::PdmField<caf::AppEnum<DrawPlane>> m_drawPlane;
caf::PdmField<caf::AppEnum<DrawStyle>> m_drawStyle;
caf::PdmField<caf::AppEnum<ColoringStyle>> m_coloringStyle;
caf::PdmField<cvf::Color3f> m_color;