#2522 Mohr circle: Update plot on 3D view selection

This commit is contained in:
Rebecca Cox
2018-02-22 17:52:10 +01:00
parent d6974bfdba
commit 28efe4661d
5 changed files with 103 additions and 5 deletions

View File

@@ -182,6 +182,7 @@ void RiuMainWindow::cleanupGuiCaseClose()
m_resultQwtPlot->deleteAllCurves();
if (m_relPermPlotPanel) m_relPermPlotPanel->clearPlot();
if (m_pvtPlotPanel) m_pvtPlotPanel->clearPlot();
if (m_mohrsCirclePlot) m_mohrsCirclePlot->clearPlot();
if (m_pdmUiPropertyView)
{
@@ -915,6 +916,14 @@ RiuPvtPlotPanel* RiuMainWindow::pvtPlotPanel()
return m_pvtPlotPanel;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RiuMohrsCirclePlot* RiuMainWindow::mohrsCirclePlot()
{
return m_mohrsCirclePlot;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------