aboutsummaryrefslogtreecommitdiff
path: root/pm.pro
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2015-09-29 14:59:59 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2015-09-29 14:59:59 -0300
commit30f327b2fd25104916bffe6fe76823f0dbe35a72 (patch)
tree3ceb449cbd3b6e8965e891efe3ea6b36183a6b10 /pm.pro
parent56c9ebb2e41bd0487199ed95838cd9e1c1d9dd8d (diff)
Inital history graph implementation and using linear scales where applicable.
- geometry.h for geometry calculation functions - scale.h for implementations of scales (currently only the linear scale) - updated main_view.qml for the new HistoryGraph component - HistoryGraph displays each subsample used as a mini scatterplot (no colors currently) - Scatterplot now uses scale.h for transformations - Code cleanup and some bug fixes
Diffstat (limited to 'pm.pro')
-rw-r--r--pm.pro3
1 files changed, 3 insertions, 0 deletions
diff --git a/pm.pro b/pm.pro
index 6d67c88..92b13e7 100644
--- a/pm.pro
+++ b/pm.pro
@@ -4,6 +4,8 @@ QMAKE_CXXFLAGS += -std=c++11 -fopenmp
QMAKE_LIBS += -larmadillo -fopenmp
HEADERS += colorscale.h \
continuouscolorscale.h \
+ geometry.h \
+ scale.h \
scatterplot.h \
historygraph.h \
interactionhandler.h \
@@ -16,6 +18,7 @@ HEADERS += colorscale.h \
SOURCES += main.cpp \
colorscale.cpp \
continuouscolorscale.cpp \
+ geometry.cpp \
scatterplot.cpp \
historygraph.cpp \
interactionhandler.cpp \