From 7d9423e34f1f158410eb7ac9a474869201f09607 Mon Sep 17 00:00:00 2001 From: EReckase Date: Sun, 8 Apr 2018 06:11:22 -0600 Subject: [PATCH] color speed is a motion element variable --- config.h | 3 +-- config.h.in | 3 +-- flam3.c | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index 16d558e..f470bfc 100644 --- a/config.h +++ b/config.h @@ -52,8 +52,7 @@ /* Define to 1 if you have the header file. */ #define HAVE_UNISTD_H 1 -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #define LT_OBJDIR ".libs/" /* Name of package */ diff --git a/config.h.in b/config.h.in index 12d8361..26fab62 100644 --- a/config.h.in +++ b/config.h.in @@ -51,8 +51,7 @@ /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H -/* Define to the sub-directory in which libtool stores uninstalled libraries. - */ +/* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ diff --git a/flam3.c b/flam3.c index edb25e1..fdb6954 100644 --- a/flam3.c +++ b/flam3.c @@ -1937,7 +1937,7 @@ void flam3_print_xform(FILE *f, flam3_xform *x, int final_flag, int numstd, doub if (flam27_flag) fprintf(f, "symmetry=\"%g\" ", 1.0-2.0*x->color_speed); - else if (!motion_flag) + else if (!motion_flag || x->color_speed != 0.0) fprintf(f, "color_speed=\"%g\" ", x->color_speed); if (!final_flag && !motion_flag && !flam27_flag)