#2538 Mohr Circle: Support time stepping

This commit is contained in:
Unknown
2018-03-02 09:31:17 +01:00
parent 6bb06ce53c
commit bbabb60ece
3 changed files with 71 additions and 12 deletions

View File

@@ -17,11 +17,13 @@
/////////////////////////////////////////////////////////////////////////////////
#include "RiuTimeStepChangedHandler.h"
#include "RiuMainWindow.h"
#include "RiuRelativePermeabilityPlotPanel.h"
#include "RiuRelativePermeabilityPlotUpdater.h"
#include "RiuMohrsCirclePlot.h"
#include "RiuPvtPlotPanel.h"
#include "RiuPvtPlotUpdater.h"
#include "RiuRelativePermeabilityPlotPanel.h"
#include "RiuRelativePermeabilityPlotUpdater.h"
#include "Rim3dView.h"
@@ -71,5 +73,8 @@ void RiuTimeStepChangedHandler::handleTimeStepChanged(Rim3dView* changedView) co
RiuPvtPlotUpdater* pvtPlotUpdater = RiuMainWindow::instance()->pvtPlotPanel()->plotUpdater();
pvtPlotUpdater->updateOnTimeStepChanged(changedView);
RiuMohrsCirclePlot* mohrsCirclePlot = RiuMainWindow::instance()->mohrsCirclePlot();
mohrsCirclePlot->updateOnTimeStepChanged(changedView);
//tim.reportTimeMS("done");
}