Logo by rathinagiri - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Check out the originating "3d Mandelbulb" thread here
 
*
Welcome, Guest. Please login or register. April 19, 2024, 08:30:38 PM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: 1 2 3 [4]   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Higher Iterations  (Read 25188 times)
Description: How the interior of a minibulb is filled on higher iterations.
0 Members and 1 Guest are viewing this topic.
grundraisin
Guest
« Reply #45 on: January 28, 2010, 06:32:08 PM »

Hi Everyone,

It was two weeks ago my brother send me an email with the link of Skytopia where I discovered these incredibles images of the mandelbulb world.
Immediatly I told myself: I want to do the same, to build a beautiful mandelbulb and make an animation where I can travel all around the mandelbulb, go deeper and deeper in this world with a good music on the background.
I found this forum where I saw these same images. And I have a question, I found lot of software to generate mandelbulb but I never can't generate a beautiful mandelbulb like Twinbee on the first page of this post or like here:
 http://www.fractalforums.com/mandelbulb-renderings/improved-lighting/
I spend all my nights on it and I can't find the formulas parameters to obtain this kind of romanesco shape.
I work with ChaosPro, and I play with the lights, change some parameters of the mandelbulb formula, I never find the way to increase the interation and obtain the pictures like I see on this forum. When the number of iterations increase the details became more and more complex (it's normal of course) but too much fretful, not the same way I can saw on the Twinbbe's iterations example where all the results are very soft.

So, my question is simple: With which software you work to obtain this deepness on the pictures (it is like some fog-shadow on the background) and to increase iteration and keep smooth details? I know it will be time consuming to obtain these beautiful pictures but I am not afraid to work on it.
Thank you for your help.
Logged
LesPaul
Guest
« Reply #46 on: January 28, 2010, 10:20:17 PM »

Why does it appear that higher iterations are adding to the set?  Doesn't iteration normally remove from the set?

These were views from inside the set looking out, i.e. the outside was solid and the inside hollow.

Ah, of course.  Easier to see the deep parts that way.
Logged
Timeroot
Fractal Fertilizer
*****
Posts: 362


The pwnge.


WWW
« Reply #47 on: January 29, 2010, 01:02:55 AM »

Great! So smooth iteration building is possible. I'm guessing it uses the same kind of idea that the 'smooth colouring' does for the normal 2D Mandelbrot?
That's exactly how it works - a kind of "bailout extrapolation", if you will. In fact, it works for any fractal whose value of z grows like a^(Power^iter), where a is dependent upon the pixel. This means for Mandelbrot sets, Julia Sets, and (for example) the perpendicular slice of the power 1 MBulb, this works. Or, since newton iteration has quadratic convergence (usually), using power=-2 also gives smooth coloring. It's  very general formula indeed.

P.S. after I read this thread a couple days ago I implemented this formula with several fractal types in ahm.ucl in UF formula library, thinking it was something new. A few hours after uploading I discover the regular "Smooth (Mandelbrot)" did the exact same thing.  undecided
Logged

Someday, man will understand primary theory; how every aspect of our universe has come about. Then we will describe all of physics, build a complete understanding of genetic engineering, catalog all planets, and find intelligent life. And then we'll just puzzle over fractals for eternity.
LesPaul
Guest
« Reply #48 on: February 01, 2010, 02:00:47 AM »

So, my question is simple: With which software you work to obtain this deepness on the pictures (it is like some fog-shadow on the background) and to increase iteration and keep smooth details? I know it will be time consuming to obtain these beautiful pictures but I am not afraid to work on it.
Thank you for your help.

Hi, grundraisin, and welcome to the forum.  The answer to your question is a little tricky.  Many here are using software that they've written themselves.

Some are using UltraFractal with quite a bit of custom "programming" done in the form of plug-ins (for 3D rendering, or lighting, for example).  I don't believe that there's a one-size-fits-all solution to doing this sort of rendering, yet, mainly because the mandelbulb itself is such a recent discovery.

Your best option might be to choose a specific image or animation from a particular member, and ask him or her what software or method was used in that instance.
« Last Edit: February 04, 2010, 06:45:14 AM by LesPaul » Logged
trafassel
Fractal Bachius
*
Posts: 531


trafassel
« Reply #49 on: February 02, 2010, 10:56:11 PM »

The same scene with my new renderer (source code available at github, project "Gestaltlupe").

Compile this project on Visual Studio 2008 (or sharpdevelop), load "settings\animation\varIterations\eins.xml" and press start to render one picture.


* Data135pic10003a.jpg (64.02 KB, 1280x720 - viewed 551 times.)

* Data135pic10004a.jpg (62.14 KB, 1280x720 - viewed 581 times.)
Logged
trafassel
Fractal Bachius
*
Posts: 531


trafassel
« Reply #50 on: February 27, 2010, 02:00:51 AM »

All 3 parts in one film:

<a href="http://www.youtube.com/v/FavM9Y4d4FY&rel=1&fs=1&hd=1" target="_blank">http://www.youtube.com/v/FavM9Y4d4FY&rel=1&fs=1&hd=1</a>
Logged
kram1032
Fractal Senior
******
Posts: 1863


« Reply #51 on: February 27, 2010, 06:58:52 PM »

it's like liquid that crystalizes in stunning shapes cheesy
Logged
trafassel
Fractal Bachius
*
Posts: 531


trafassel
« Reply #52 on: August 30, 2010, 09:01:05 PM »

For smooth iteration in this video i used the following computations. No much math here, just playing with parameters and comparing results.

//Initialisation:
double gr1=GetDouble("Formula.Static.Cycles"); // Number of iterations
int tempGr=(int)gr1;
double gr1Frac=gr1- tempGr;
gr1=1-gr1Frac;
gr1*=2.4;

double gr =Math.Pow(10,gr1)+1.0;  // Bailout

// ... in iteration:

double r= Math.Sqrt(x*x+y*y+z*z);
if (r > gr) { tw = n; /* abort iteration: no inner point */ break; }

<a href="http://www.youtube.com/v/xZeHSzGCSfg&rel=1&fs=1&hd=1" target="_blank">http://www.youtube.com/v/xZeHSzGCSfg&rel=1&fs=1&hd=1</a>
Logged
Pages: 1 2 3 [4]   Go Down
  Print  
 
Jump to:  


Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.23 seconds with 29 queries. (Pretty URLs adds 0.008s, 2q)