Hi All,
I'm working on a new game The formula is TMan in Russell Walsmith orgform.
Basically is my SlopeTMan that i'm rewritng and re-structured but i have a problem.
I have implemented the TMan of Russell and i added also a normal Mandelbrot that i attach under.
In your opinion is it correct?
That parameter is correct?
Try it to p1 (0.0 , 0.1), you will see the black line, i think is missing of something but i don't understand what.
The set is correct
x2 = x * x - y * y - z * z + cx;
y2 = 2 * x * y + cy;
z2 = 2 * x * z + cz;
This is the formula
TMan{
c1=real(pixel)
c2=imag(pixel)
c3=p1
z1=z2=z3=0
:
t1=z1^2-z2^2-z3^2
t2=2*z1*z2
t3=2*z1*z3
z1=t1+c1
z2=t2+c2
z3=t3+c3
z=z1+z2+z3
|z| < 64
}
Hi All,
I'm working on a new game 8) The formula is TMan in Russell Walsmith orgform.
Basically is my SlopeTMan that i'm rewritng and re-structured but i have a problem.
I have implemented the TMan of Russell and i added also a normal Mandelbrot that i attach under.
In your opinion is it correct?
That parameter is correct?
Try it to p1 (0.0 , 0.1), you will see the black line, i think is missing of something but i don't understand what.
The set is correct
x2 = x * x - y * y - z * z + cx;
y2 = 2 * x * y + cy;
z2 = 2 * x * z + cz;
This is the formula
````
TMan{
c1=real(pixel)
c2=imag(pixel)
c3=p1
z1=z2=z3=0
:
t1=z1^2-z2^2-z3^2
t2=2*z1*z2
t3=2*z1*z3
z1=t1+c1
z2=t2+c2
z3=t3+c3
z=z1+z2+z3
|z| < 64
}
````
Andrea Spinozzi
https://fractalcosmo.comedited Jun 23 '22 at 5:38 pm