Forum Moderators: TheBryster
Bryce F.A.Q (Last Updated: 2025 Jan 04 3:16 am)
I hope this makes sence. I have to use this to 'stretch' a mandelbrot fractal along the real or imag axis. I can't just render my fractal and stretch it in Photoshop or PSP or any other image program. It's my assignment for Math at school to do this mathematically.
(_/)
(='.'=)
(")(")This is Bunny. Copy and paste bunny into your
signature to help him gain world domination.
The formula defines the #pixel variable through the codinates on the image. The pixel on the horizontal axis is a the pixel on the vertical axis is b. c and d can be written in equations with a and b, wich are known values. but the problem is that ultrafractal knows these values, but I don't know how to adress them. How does ultrafractal call these values in it's formula scripting language? What I'm trying to acheive is that I can say to Ultrafractal: Take the real component of complex value 'Z' and/or '#pixel' and call it 'a'. Take the imaginary component (imag component) of 'Z' and/or '#pixel' and call it 'b'.
(_/)
(='.'=)
(")(")This is Bunny. Copy and paste bunny into your
signature to help him gain world domination.
Hi, sorry, I dont use UF to check its command list. Yet, arent there basic commands/functions like "real()" and "imag()" to achieve this? See e.g. at: http://www.fractalus.com/kerry/articles/uf-drawing/uf-drawing.html Hubert
"All that we see or fear, is but a Sphere inside a Sphere." (E. A. Pryce -- Tuesday afternoon, 1845)
yes, these basic functions are available in UF, but If I say to ultrafractal to use real(z) or imag(z) it tells me to define z wich I've already done. putting a '#' in front of the 'z' also doesn't help. Basically I want to multiply my mandelbrot fractal along the imag and real axis. simply multiplying the formula with 2 makes cardionid half the normal size, but if I want to multiply it with 3 along the real axis and with 0.5 along the imag axis I have to multiply the formula with a complex value (c + di). The problem is that for each value of #pixel I need another 'c' and 'd'. Thanx for the link I'll check it out.
(_/)
(='.'=)
(")(")This is Bunny. Copy and paste bunny into your
signature to help him gain world domination.
This site uses cookies to deliver the best experience. Our own cookies make user accounts and other features possible. Third-party cookies are used to display relevant ads and to analyze how Renderosity is used. By using our site, you acknowledge that you have read and understood our Terms of Service, including our Cookie Policy and our Privacy Policy.
Okay, it's not a bryce question and I also posted this on the fractal forum but I thought that if I posted it here too. I might have a bigger change at a usable answer. It's a highly unusual question, but here it goes: I've got the complex values 'Z' and '#pixel' in my standard mandelbrot formula. each complex value is given by (a + bi). I've calculated that for '(a + bi)*(c + di)=(a + 2bi)' c = a^2 + b^2 and d = (ab)/(a^2 + b^2). But how do I tell ultrafractal to create the values c and d from the complex values 'Z' or from '#pixel'? I cant just tell ultrafractal: c = a^2 + b^2 d = (ab)/(a^2 + b^2) I have to define the values 'a' and 'b' too. how do I devide 'Z' and '#pixel' in the components 'a' and 'bi'? P.S:(i = sqrt(-1))
(_/)
(='.'=)
(")(")This is Bunny. Copy and paste bunny into your signature to help him gain world domination.