summaryrefslogtreecommitdiffstats
path: root/source/cNoise.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cNoise.h')
-rw-r--r--source/cNoise.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/cNoise.h b/source/cNoise.h
index 74c2cdd02..6d0a69483 100644
--- a/source/cNoise.h
+++ b/source/cNoise.h
@@ -74,6 +74,17 @@ private:
+/// Linearly interpolates values in the array between the anchor points
+extern void IntArrayLinearInterpolate2D(
+ int * a_Array,
+ int a_SizeX, int a_SizeY, // Dimensions of the array
+ int a_AnchorStepX, int a_AnchorStepY // Distances between the anchor points in each direction
+);
+
+
+
+
+
#if NOISE_USE_INLINE
# include "cNoise.inc"
#endif