aboutsummaryrefslogtreecommitdiff
path: root/scatterplot.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-09-01 20:45:02 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-09-01 20:45:02 -0300
commita1956a4ff879eb2d34c7a0ca448f48ee6e64ce99 (patch)
treeb958291afa29268517633a8490920ae38dfcf2d8 /scatterplot.h
parentf405ac30db93ed9f2adb739c3c09b2ce9369fee6 (diff)
Improvements related to visual representation of distortions.
- New continuous color scale class; - Improvements in signal handler for calculating distortions; - Implementation of the NP(k) measure.
Diffstat (limited to 'scatterplot.h')
-rw-r--r--scatterplot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scatterplot.h b/scatterplot.h
index a115755..7ed58c8 100644
--- a/scatterplot.h
+++ b/scatterplot.h
@@ -12,7 +12,7 @@ class Scatterplot : public QQuickItem
public:
Scatterplot(QQuickItem *parent = 0);
- void setColorScale(const ColorScale &colorScale);
+ void setColorScale(ColorScale *colorScale);
signals:
void xyChanged(const arma::mat &XY);
@@ -58,7 +58,7 @@ private:
arma::vec m_colorData;
- ColorScale m_colorScale;
+ ColorScale *m_colorScale;
};
#endif // SCATTERPLOT_H