17 #ifndef GEPETTO_GUI_COLORMAP_HH
18 #define GEPETTO_GUI_COLORMAP_HH
29 static QColor
interpolate(std::size_t nbColors, std::size_t index) {
31 qDebug() <<
"Nb colors:" << nbColors <<
"and index" << index;
32 return QColor::fromHslF((qreal)index / (qreal)nbColors, 1, 0.5);
35 ColorMap(std::size_t nbColors) : nbColors_(nbColors), currentIndex_(0) {
38 std::size_t val = (nbColors > 0) ? nbColors : 1;
39 for (log2up_ = 0; val; ++log2up_, val >>= 1) mask_ = 2 * mask_ + 1;
48 color[0] = (float)c.redF();
49 color[1] = (float)c.greenF();
50 color[2] = (float)c.blueF();
51 color[3] = (float)c.alphaF();
55 QColor color =
getColor(currentIndex_);
60 void currentIndex(std::size_t index) { currentIndex_ = index % nbColors_; }
64 std::size_t
remap(
const std::size_t& index)
const {
66 std::size_t input = index;
67 for (std::size_t i = 0; i < log2up_; ++i) {
76 std::size_t nbColors_;
79 std::size_t currentIndex_;
Definition: color-map.hh:27
void currentIndex(std::size_t index)
Definition: color-map.hh:60
QColor nextColor()
Definition: color-map.hh:54
std::size_t remap(const std::size_t &index) const
Definition: color-map.hh:64
static QColor interpolate(std::size_t nbColors, std::size_t index)
Definition: color-map.hh:29
ColorMap(std::size_t nbColors)
Definition: color-map.hh:35
void getColor(std::size_t index, osgVector4 &color) const
Definition: color-map.hh:46
QColor getColor(std::size_t index) const
Definition: color-map.hh:42
::osg::Vec4f osgVector4
Definition: config-osg.h:100
Definition: action-search-bar.hh:27