From 3ce49858c6859fccc2e4d35839c34685348790d1 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Wed, 2 Mar 2016 15:47:24 -0300 Subject: 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 --- manipulationhandler.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'manipulationhandler.h') diff --git a/manipulationhandler.h b/manipulationhandler.h index 9199c93..c208460 100644 --- a/manipulationhandler.h +++ b/manipulationhandler.h @@ -4,8 +4,6 @@ #include #include -#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; }; -- cgit v1.2.3