2 Commits

Author SHA1 Message Date
Scott Draves f8b6c78201 fix symmetry singularities by enforcing maxforms from the beginning instead of the end 2024-12-31 09:58:26 -05:00
Erik Reckase 7fb50c82e9 wrong redirection (#20)
* updated for aclocal 1.15

* libtool update after configure

* aclocal needed refresh

* localhost

* color speed is a motion element variable

* if mult motion elements present, was not using correct vals

* wrong element reference
2018-04-12 15:27:33 -04:00
+1 -1
View File
@@ -1131,7 +1131,7 @@ main(argc, argv)
if (maxforms && atoi(maxforms)) { if (maxforms && atoi(maxforms)) {
cp_save.symmetry = 0; cp_save.symmetry = 0;
while (cp_save.num_xforms > atoi(maxforms)) while (cp_save.num_xforms > atoi(maxforms))
flam3_delete_xform(&cp_save, cp_save.num_xforms - 1); flam3_delete_xform(&cp_save, 0);
} }
} }