The past week or so, I've been developing a new coloring algorithm. The basic idea was to use the minimum iteration of the image to help determine how the image was colored.
I know the software reports the minimum iterations for the current image in a separate window, but I haven't seen any way to access that information within a formula. Is there any way to access that information for colori
Hello,
I have been using Fractal Explorer [now defunct, and I'm kicking myself fro not buying a license to the source years ago when the Russian dude was still responding to e-mail] and I have many [probably about 1k] original fractal formulae that are stuck in that format.
I still have the app, but it only works on 32 bit systems, and I only have one 32 bit computer left.
I followed
jam
posted Dec 6 '16 at 3:13 am
Over the last few months I have created a file of unique Newton, Halley, and Householder method formulas, and would like to upload them to the public database. Rather than include them with my previously existing formula files, since there are so many entires I would like to create a jam-Newton.ufm file or something like that. Who do I contact these days about creating a new formula file for th
Hi all.
When writing a coloring algorithm, is there a way to set repeat gradient as unchecked by default? I've tried 'repeatgradient=0' and similar, but no luck yet.....
EvrWccn
posted Oct 8 '16 at 1:44 am
This is a formula I found initially through a program for the iPad called Frax...
They use a Line Average coloring algorithm... I googled it and found this.
I have no clue how to program it into UF, so I was hoping to find someone here that did know how...
float xmin = -2.5;
float ymin = -2.0;
float wh = 4;
float stripes = 5.0;
int maxIterations = 1000;
void setup() {
size(800, 80
Hi.
is it possible to provide the option of alternative bailouts in the same formula?
More specifically, I wanted to include convergent and divergent bailouts:
|z|<@bailout (default 4.0)
|z|>@bailout (default 0.001)
It seems only one expression is allowed in the bailout section. Is there a way to do this? Any help would be appreciated.