summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Reckase <e.reckase@gmail.com>2010-06-22 22:27:31 +0000
committerScott Draves <spot@draves.org>2015-02-15 12:20:12 -0500
commitce1ef42a60b4cfdf5c00bf4eb90399090374e31e (patch)
treecc3c935aea1e6ad9340a96479cdc21e2dbea3733
parent38585c856d12f96bf0b44594be563e088197588d (diff)
downloadpucket-ce1ef42a60b4cfdf5c00bf4eb90399090374e31e.tar.gz
pucket-ce1ef42a60b4cfdf5c00bf4eb90399090374e31e.tar.bz2
pucket-ce1ef42a60b4cfdf5c00bf4eb90399090374e31e.zip
auger variation's parameters were not interpolated - forgot to add them to interpolation code
git-svn-id: https://flam3.googlecode.com/svn/trunk@14 77852712-ef1d-11de-8684-7d64432d61a3
-rw-r--r--src/interpolation.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interpolation.c b/src/interpolation.c
index d9219fd..0ed3bf6 100644
--- a/src/interpolation.c
+++ b/src/interpolation.c
@@ -573,6 +573,10 @@ void flam3_interpolate_n(flam3_genome *result, int ncp,
INTERP(xform[i].waves2_scaley);
INTERP(xform[i].waves2_freqx);
INTERP(xform[i].waves2_freqy);
+ INTERP(xform[i].auger_sym);
+ INTERP(xform[i].auger_weight);
+ INTERP(xform[i].auger_freq);
+ INTERP(xform[i].auger_scale);
for (j = 0; j < flam3_nvariations; j++)
INTERP(xform[i].var[j]);