aboutsummaryrefslogtreecommitdiff
path: root/scatterplot.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-12-16 14:00:08 +0100
committerSamuel Fadel <samuelfadel@gmail.com>2015-12-16 14:02:30 +0100
commita184000e2086c0d86d5aef20d715f5e884a63ff3 (patch)
tree836fcb3363edd0e3d247ed1e99fbdb2f0982909f /scatterplot.h
parentf55e5dcfa82b552a1eb6642b093ed42a48565a3a (diff)
Scale & LinearScale are now template classes.
Diffstat (limited to 'scatterplot.h')
-rw-r--r--scatterplot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scatterplot.h b/scatterplot.h
index e909b6a..255649a 100644
--- a/scatterplot.h
+++ b/scatterplot.h
@@ -51,7 +51,7 @@ private:
void animationTick();
arma::mat m_oldXY, m_xy;
- LinearScale m_sx, m_sy;
+ LinearScale<float> m_sx, m_sy;
enum InteractionState {
INTERACTION_NONE,