aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
commit3ce49858c6859fccc2e4d35839c34685348790d1 (patch)
tree9919729ae2d094ab3bed9fb45184c027713d9127 /manipulationhandler.h
parent00efaedf4e328604598975a07a497d1ce769bb19 (diff)
Improvements related to ColorScale and screenshots.
* ColorScale: now a pointer whenever needed. main() takes care of updating extents * New class DivergentColorScale: works specifically for divergent scales, always has 3 colors as input: negative values, 0, positive values * ManipulationHandler: ProjectionHistory no longer needed
Diffstat (limited to 'manipulationhandler.h')
-rw-r--r--manipulationhandler.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/manipulationhandler.h b/manipulationhandler.h
index 9199c93..c208460 100644
--- a/manipulationhandler.h
+++ b/manipulationhandler.h
@@ -4,8 +4,6 @@
#include <QObject>
#include <armadillo>
-#include "projectionhistory.h"
-
class ManipulationHandler
: public QObject
{
@@ -20,8 +18,7 @@ public:
};
ManipulationHandler(const arma::mat &X,
- const arma::uvec &cpIndices,
- ProjectionHistory *history);
+ const arma::uvec &cpIndices);
void setTechnique(Technique technique) { m_technique = technique; }
@@ -34,7 +31,6 @@ public slots:
private:
arma::mat m_X;
arma::uvec m_cpIndices;
- ProjectionHistory *m_history;
Technique m_technique;
};