Add get methods for drawStyle and coloringStyle for Rim3dWellLogCurve

This commit is contained in:
Gaute Lindkvist 2018-04-13 13:45:12 +02:00
parent fd63ae7531
commit 4c5b90f363
2 changed files with 21 additions and 3 deletions

View File

@ -95,13 +95,29 @@ void Rim3dWellLogCurve::updateCurveIn3dView()
} }
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
/// ///
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
Rim3dWellLogCurve::DrawPlane Rim3dWellLogCurve::drawPlane() const Rim3dWellLogCurve::DrawPlane Rim3dWellLogCurve::drawPlane() const
{ {
return m_drawPlane(); return m_drawPlane();
} }
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Rim3dWellLogCurve::DrawStyle Rim3dWellLogCurve::drawStyle() const
{
return m_drawStyle();
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Rim3dWellLogCurve::ColoringStyle Rim3dWellLogCurve::coloringStyle() const
{
return m_coloringStyle();
}
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------
/// ///
//-------------------------------------------------------------------------------------------------- //--------------------------------------------------------------------------------------------------

View File

@ -60,8 +60,10 @@ public:
void updateCurveIn3dView(); void updateCurveIn3dView();
DrawPlane drawPlane() const; DrawPlane drawPlane() const;
bool isShowingCurve() const; DrawStyle drawStyle() const;
ColoringStyle coloringStyle() const;
bool isShowingCurve() const;
virtual void curveValuesAndMds(std::vector<double>* values, std::vector<double>* measuredDepthValues) const = 0; virtual void curveValuesAndMds(std::vector<double>* values, std::vector<double>* measuredDepthValues) const = 0;