diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2016-02-29 23:45:22 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2016-02-29 23:45:22 -0300 |
commit | bf9362935c77bb5cb739c39e3f9b0abcbdcb6aa5 (patch) | |
tree | 7fca0d13dcf8f628b33707a53e41b33b5b0c2054 | |
parent | aeb79d03ee960a12b7b9602bc9392b840711764b (diff) |
ProjectionHistory: removed interpolation of CP values.
-rw-r--r-- | projectionhistory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/projectionhistory.cpp b/projectionhistory.cpp index f450e0e..e58d227 100644 --- a/projectionhistory.cpp +++ b/projectionhistory.cpp @@ -220,7 +220,7 @@ void ProjectionHistory::setRewind(double t) } arma::vec values = m_values * t + m_prevValues * (1.0 - t); - emit cpValuesRewound(values(m_cpIndices)); + // emit cpValuesRewound(values(m_cpIndices)); emit rpValuesRewound(values(m_rpIndices)); emit valuesRewound(values); } |