##// END OF EJS Templates
Adds methods to handle search of min/max values in structures that can contain NaN values...
Adds methods to handle search of min/max values in structures that can contain NaN values NaN values are excluded from min/max (see doc)

File last commit:

r584:17624d030c39
r606:36d29ea2f20f
Show More
ColorUtils.h
19 lines | 569 B | text/x-c | CLexer
Alexandre Leroux
Sets differents colors for components of a vector
r584 #ifndef SCIQLOP_COLORUTILS_H
#define SCIQLOP_COLORUTILS_H
#include <vector>
class QColor;
/**
* Utility class with methods for colors
*/
struct ColorUtils {
/// Generates a color scale from min / max values and a number of colors.
/// The algorithm uses the HSV color model to generate color variations (see
/// http://doc.qt.io/qt-4.8/qcolor.html#the-hsv-color-model)
static std::vector<QColor> colors(const QColor &minColor, const QColor &maxColor,
int nbColors) noexcept;
};
#endif // SCIQLOP_COLORUTILS_H