aboutsummaryrefslogtreecommitdiff
path: root/colorscale.h
diff options
context:
space:
mode:
Diffstat (limited to 'colorscale.h')
-rw-r--r--colorscale.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/colorscale.h b/colorscale.h
index 90671eb..1be315f 100644
--- a/colorscale.h
+++ b/colorscale.h
@@ -35,16 +35,13 @@ void ColorScale::sample(int samples, OutputIterator it) const
return;
}
- float t = min();
float step = (max() - min()) / samples;
qreal r, g, b;
- for (unsigned i = 0; i < 3*samples; i += 3) {
+ for (float t = min(); t < max(); t += step) {
color(t).getRgbF(&r, &g, &b);
*it = r; it++;
*it = g; it++;
*it = b; it++;
-
- t += step;
}
}