Writing Formulas
Questions and discussion regarding writing Ultra Fractal formulas and classes.
70
Topics
313
Posts
7
Followers
Yes No
Hide topic messages
Yes No
Enable infinite scrolling
tobymarshall posted Aug 7 '19 at 10:07 pm
Hi folks,

I've been off UF for some time, and trying now to update the formula DB for UF6. I am getting a message after the download is complete that a txt file cannot be created, access denied, and when I dismiss that, the install process hangs. I have a screenshot of the message, which I attach. Any ideas? Never had anything like this happen before.

Also, in trying to update the v5 data
5d4b3d28edd21.jpg
2replies
302views
recent by jam  ·  Aug 24 '19 at 3:45 pm
Otto Magus posted Dec 7 '15 at 1:26 pm
Does anyone know how to write a formula for this fractal?
I've seen it called a teardrop or mandeldrop fractal, but after much experimentation have been unable to recreate it.

There may already be a formula for this in the database, but I couldn't find one.


19replies
1.9kviews
recent by Velvet--Glove  ·  Aug 17 '19 at 9:03 am
gerrit posted Jul 30 '18 at 7:56 pm
I attempted to implement a perturbation method for this fractal:

w <-- w/z
z <-- z^2+w^2+c

but it does not give the right result. Suggestions anyone?

MandelFoamPT {
init:
#z = sqrt(-1/2)
loop:
#z = #z^2 + #pixel
bailout:
|#z| <= @bailout
perturbinit:
#dz = 0
w = sqrt(1/2)
perturbloop:
wo = w
w = w/#z;
#dz = 2*#z*#dz + sqr(#dz) + wo^2 + #dpixel
default
8replies
426views
recent by gerrit  ·  Aug 22 '18 at 3:58 am
gerrit posted Jul 17 '18 at 4:09 am
Seems like the outer iteration variable is reset in the inner loop.
Example below.

class Bug {
static func printCoeff(int K,int M)
$define DEBUG
int i=0
int j=0

while(i<=K)
;print("i1=",i)
while(j<=M)
if i>0
; never get here, i is reset to 0?
print(i, " ", j)
endif
;print("i2=",i)
2replies
170views
recent by gerrit  ·  Jul 17 '18 at 3:30 pm
gerrit posted May 21 '18 at 11:35 pm
Is there any way to make formula variables visible in the coloring formula loop? I'm trying some fractals with more than one variable z and need to use both in coloring.

I have an ugly workaround basically doing all the coloring in the fractal formula and stuffing the color index in #z at the end and then just setting #index = #z in the coloring formula.

1replies
162views
recent by Frederik Slijkerman  ·  May 25 '18 at 8:15 am
jochoalions posted Dec 19 '17 at 5:27 pm
Is it possible to declare a Global Variable such that its value persists across animation frames? This is necessary when one frame of the animation is dependent on some computational state information of the previous frame, behond what is stored in the Parameters.

For example, the fractals produced in diffusion models, where the pictorial fractal is a representation of a computational state w
2replies
265views
recent by jochoalions  ·  Dec 23 '17 at 3:22 pm
Hello
I am a beginner with the writing of formulas.

I have two questions:

1.
In the triangle inequality average coloring program we find:

IF (!first)
az2 = cabs(#z - #pixel)
lowbound = abs(az2 - ac)
sum = sum + ((cabs(#z) - lowbound) / (az2+ac - lowbound))
ELSE
first = false
ENDIF

I suppose that !first means the value of first but I a
1replies
288views
recent by Frederik Slijkerman  ·  Nov 10 '17 at 9:42 am
KirstenStar posted Oct 28 '17 at 11:32 am
There is a script in apo that I really wish I could play with in UF (my apo got corrupted and can't find it now as it was removed from where I found it and cannot now find another version that will work on my mac) called Faerie Blossom originally written for Apophysis by Bunnie Clark and Bart Doetsch, am I wishful thinking here or is it possible?

2replies
218views
recent by KirstenStar  ·  Oct 30 '17 at 10:09 am
minh posted Sep 30 '17 at 11:16 am
Can someone show me how I can make a dragon curve in this program? I'm new and I can't figure out how you can do something like this. If it is not possible to do this, can you show me another program that may help?

1replies
200views
recent by jam  ·  Sep 30 '17 at 11:04 pm
jam posted Aug 7 '17 at 4:34 pm
Greetings. Back in the days of the old mailing list, there were so many discussions about what it took to make a fractal image one's own, but not nearly so much discussion relating to modifications of fractal formulas in UFM files. Most of us have modified z = z^2 + c many times without a thought, but what about other fractal formulas? Many of us have been asked for permission to modify our fo
2replies
224views
recent by Frederik Slijkerman  ·  Aug 24 '17 at 9:46 am
KathyR posted Aug 5 '17 at 8:27 pm
I am an avid fan of XaoS and it has a very unique fractal called Catseye. There isn't much documentation on it, I don't know where it came from, and I have no idea what the actual formula looks like. Perhaps it can be uncovered somewhere on GitHub? It has some incredible potential when varying the bailout value and the different fractal planes. Here are some designs I worked up mostly in Juli
59861ae9a5891.png
10replies
654views
recent by KathyR  ·  Aug 17 '17 at 1:55 am
Otto Magus posted Apr 20 '17 at 4:02 pm
Is anyone else unable to access the public formulas, either browse or recent changes or logging in as an author?

I am able to update my formulas successfully in UF, but cannot upload some new formulas I have written.

I get this message:

CGIWrap Error: Request Error

followed by (for browsing collection):

There is a problem with the request. Please contact the owner of the site
2replies
177views
recent by Otto Magus  ·  Apr 21 '17 at 2:22 pm
Load more
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft