aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'manipulationhandler.cpp')
-rw-r--r--manipulationhandler.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/manipulationhandler.cpp b/manipulationhandler.cpp
index f561ad7..daaba01 100644
--- a/manipulationhandler.cpp
+++ b/manipulationhandler.cpp
@@ -35,13 +35,3 @@ void ManipulationHandler::setCP(const arma::mat &Ys)
emit mapChanged(Y);
}
-
-void ManipulationHandler::setRewind(double t)
-{
- if (!m_history->hasPrev()) {
- return;
- }
-
- arma::mat Y = m_history->Y() * t + m_history->prev() * (1.0 - t);
- emit mapRewound(Y);
-}