aboutsummaryrefslogtreecommitdiff
path: root/numericrange.h
diff options
context:
space:
mode:
authorSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
committerSamuel Fadel <samuelfadel@gmail.com>2016-03-02 15:47:24 -0300
commit3ce49858c6859fccc2e4d35839c34685348790d1 (patch)
tree9919729ae2d094ab3bed9fb45184c027713d9127 /numericrange.h
parent00efaedf4e328604598975a07a497d1ce769bb19 (diff)
Improvements related to ColorScale and screenshots.
* ColorScale: now a pointer whenever needed. main() takes care of updating extents * New class DivergentColorScale: works specifically for divergent scales, always has 3 colors as input: negative values, 0, positive values * ManipulationHandler: ProjectionHistory no longer needed
Diffstat (limited to 'numericrange.h')
-rw-r--r--numericrange.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/numericrange.h b/numericrange.h
index 0b69d0e..ebb20ef 100644
--- a/numericrange.h
+++ b/numericrange.h
@@ -5,7 +5,7 @@
#include <stdexcept>
/*
- * A range in [first, last) in steps of 1.
+ * A (low memory usage) generator of ranges in steps of 1.
*/
template<typename T>
class NumericRange
@@ -55,6 +55,9 @@ public:
T m_value;
};
+ /*
+ * The range [first, last).
+ */
NumericRange(const T &first, const T &last)
: m_begin(first)
, m_end(last)