mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Add get methods for drawStyle and coloringStyle for Rim3dWellLogCurve
This commit is contained in:
parent
fd63ae7531
commit
4c5b90f363
@ -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();
|
||||||
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user