aboutsummaryrefslogtreecommitdiff
path: root/continuouscolorscale.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 /continuouscolorscale.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 'continuouscolorscale.h')
-rw-r--r--continuouscolorscale.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/continuouscolorscale.h b/continuouscolorscale.h
new file mode 100644
index 0000000..1ca2092
--- /dev/null
+++ b/continuouscolorscale.h
@@ -0,0 +1,14 @@
+#ifndef CONTINUOUSCOLORSCALE_H
+#define CONTINUOUSCOLORSCALE_H
+
+#include "colorscale.h"
+
+class ContinuousColorScale : public ColorScale
+{
+public:
+ ContinuousColorScale();
+
+ QColor color(qreal t) const;
+};
+
+#endif // CONTINUOUSCOLORSCALE_H