From a1956a4ff879eb2d34c7a0ca448f48ee6e64ce99 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Tue, 1 Sep 2015 20:45:02 -0300 Subject: 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. --- continuouscolorscale.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 continuouscolorscale.h (limited to 'continuouscolorscale.h') 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 -- cgit v1.2.3