mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
3D well log curves: Code cleanup
This commit is contained in:
@@ -69,7 +69,7 @@ void Rim3dWellLogCurveCollection::add3dWellLogCurve(Rim3dWellLogCurve* curve)
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool Rim3dWellLogCurveCollection::showGrid() const
|
||||
bool Rim3dWellLogCurveCollection::isShowingGrid() const
|
||||
{
|
||||
return m_showGrid;
|
||||
}
|
||||
@@ -77,7 +77,7 @@ bool Rim3dWellLogCurveCollection::showGrid() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool Rim3dWellLogCurveCollection::showPlot() const
|
||||
bool Rim3dWellLogCurveCollection::isShowingPlot() const
|
||||
{
|
||||
return m_showPlot;
|
||||
}
|
||||
|
||||
@@ -39,12 +39,11 @@ public:
|
||||
bool has3dWellLogCurves() const;
|
||||
void add3dWellLogCurve(Rim3dWellLogCurve* curve);
|
||||
|
||||
bool showGrid() const;
|
||||
bool showPlot() const;
|
||||
bool isShowingGrid() const;
|
||||
bool isShowingPlot() const;
|
||||
|
||||
std::vector<Rim3dWellLogCurve*> vectorOf3dWellLogCurves() const;
|
||||
|
||||
|
||||
private:
|
||||
virtual void fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) override;
|
||||
virtual caf::PdmFieldHandle* objectToggleField() override;
|
||||
|
||||
@@ -105,7 +105,7 @@ Rim3dWellLogCurve::DrawPlane Rim3dWellLogCurve::drawPlane() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
bool Rim3dWellLogCurve::toggleState() const
|
||||
bool Rim3dWellLogCurve::isShowingCurve() const
|
||||
{
|
||||
return m_showCurve;
|
||||
}
|
||||
|
||||
@@ -61,7 +61,7 @@ public:
|
||||
void updateCurveIn3dView();
|
||||
|
||||
DrawPlane drawPlane() const;
|
||||
bool toggleState() const;
|
||||
bool isShowingCurve() const;
|
||||
|
||||
virtual void curveValuesAndMds(std::vector<double>* values, std::vector<double>* measuredDepthValues) const = 0;
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ class RimEclipseResultCase;
|
||||
class QString;
|
||||
|
||||
//==================================================================================================
|
||||
///
|
||||
/// Not in use yet
|
||||
///
|
||||
//==================================================================================================
|
||||
class Rim3dWellLogRftCurve : public Rim3dWellLogCurve
|
||||
|
||||
Reference in New Issue
Block a user