mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
(#396) Added fields for min and max depths to the well log plot
Changing those fields will cause all well trace plots to be updated accordingly.
This commit is contained in:
@@ -59,3 +59,14 @@ RiuWellLogTracePlot* RiuWellLogPlot::createTracePlot()
|
||||
|
||||
return tracePlot;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RiuWellLogPlot::setDepthRange(double minDepth, double maxDepth)
|
||||
{
|
||||
for (int tpIdx = 0; tpIdx < m_tracePlots.count(); tpIdx++)
|
||||
{
|
||||
m_tracePlots[tpIdx]->setDepthRange(minDepth, maxDepth);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user