removed heading::rnd (not seedable)

fixed grid-walker issues when conducting multiple runs
new helper methods for the interpolatorr
This commit is contained in:
2016-04-26 11:49:12 +02:00
parent 6d3d2eeb55
commit 8f6bfa917f
4 changed files with 32 additions and 16 deletions

View File

@@ -34,6 +34,12 @@ public:
entries.push_back(InterpolatorEntry(key, value));
}
/** get the smallest added key */
Key getMinKey() const {return entries.front().key;}
/** get the largest added key */
Key getMaxKey() const {return entries.back().key;}
/** get the interpolated value for the given key */
Value get(const Key key) const {