aboutsummaryrefslogtreecommitdiff
path: root/scatterplot.h
diff options
context:
space:
mode:
Diffstat (limited to 'scatterplot.h')
-rw-r--r--scatterplot.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/scatterplot.h b/scatterplot.h
index 2dc031a..63a7e6e 100644
--- a/scatterplot.h
+++ b/scatterplot.h
@@ -44,7 +44,11 @@ private:
void updateGeometry();
void updateMaterials();
- arma::mat m_xy;
+ void resetAnimation();
+ void startAnimation();
+ void animationTick();
+
+ arma::mat m_oldXY, m_xy;
LinearScale m_sx, m_sy;
enum InteractionState {
@@ -63,6 +67,7 @@ private:
arma::vec m_colorData;
ColorScale *m_colorScale;
+ float m_t;
};
#endif // SCATTERPLOT_H