Logo by Madman - 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: Follow us on Twitter
 
*
Welcome, Guest. Please login or register. April 20, 2024, 08:04:30 AM


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]   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: Introducing the Tanglebrot: Another valiant attempt at the holy grail  (Read 11316 times)
0 Members and 1 Guest are viewing this topic.
msltoe
Iterator
*
Posts: 187


« on: October 20, 2012, 03:51:38 AM »

The idea of the tanglebrot is that when you are near the root regions of the Mandelbrot (in this case the Juliabrot), permute the coordinates and scale the coordinates. The formulation I've come up to make it somewhat nice looking is a bit of a hack.
Maybe we can find better parameters and/or formulas to work with.
 
Here's the inner loop:

   r=x*x+y*y-z*z;
   if (r>0.01) {
     x1 = (x*x-y*y);
     y1 =     2*x*y;
     z1 =       -2*z*sqrt(x*x+y*y+0.5*z*z);
     x = x1+a; y = y1+b; z = z1+c;
   }
   else
   { x1=z*3;
     y1=x*3;
     z1=y*3;
     x=x1;y=y1;z=z1;
   }
 
« Last Edit: October 20, 2012, 03:53:50 AM by msltoe » Logged
msltoe
Iterator
*
Posts: 187


« Reply #1 on: October 20, 2012, 04:37:45 AM »

Another J-set that is a little easier to visualize what's going on:

Logged
matsoljare
Fractal Lover
**
Posts: 215



WWW
« Reply #2 on: October 20, 2012, 03:51:27 PM »

Can you try this on a Julibrot?
Logged
msltoe
Iterator
*
Posts: 187


« Reply #3 on: October 20, 2012, 05:24:42 PM »

Matsoljare, thanks for the request. I think you mean the M-set. The above two were J-brots.
Here's the M-set, not nearly as convincing.



* tanglehoot.jpg (203.13 KB, 1600x1600 - viewed 712 times.)
« Last Edit: October 21, 2012, 09:51:41 PM by msltoe » Logged
matsoljare
Fractal Lover
**
Posts: 215



WWW
« Reply #4 on: October 21, 2012, 09:23:35 PM »

Yeah, sure isn't convincing at all.... cause it only shows an error message!
Logged
msltoe
Iterator
*
Posts: 187


« Reply #5 on: October 21, 2012, 09:52:52 PM »

The M-set picture was in my Flickr photostream. I modified the post and put the image on the forum.
Logged
cKleinhuis
Administrator
Fractal Senior
*******
Posts: 7044


formerly known as 'Trifox'


WWW
« Reply #6 on: October 21, 2012, 10:07:48 PM »

it is loking nice, a candidate, not much detail, but certainly a candidate containing the mset ... so lets see how the 8th power looks wink
Logged

---

divide and conquer - iterate and rule - chaos is No random!
DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #7 on: October 22, 2012, 12:12:01 PM »

Lil question;

Is the formula discontinue? wink
Logged

No sweat, guardian of wisdom!
matsoljare
Fractal Lover
**
Posts: 215



WWW
« Reply #8 on: October 22, 2012, 11:37:57 PM »

Wow, that looks awesome, i'd like to see some closeups, on the middle of the main bulb especially....
Logged
msltoe
Iterator
*
Posts: 187


« Reply #9 on: October 23, 2012, 04:10:11 AM »

Thanks guys!

DarkBeam: The formula I've presented is discontinuous, although the breaks are not to so jarring because they occur only when the permutation is made and there is often space between the two segments. I'm working on a C0 continuous version, but I'm not sure if it will pan out.


Christian: Not sure what an 8-th order would mean for this beast given I'm not using a typical spherical coordinate-derived formula. My goal has always been to get the 2nd order to have lots of fractal goodness. I think that when we go up to 8th order with a lot of these functions we get lots of near-conformal regions to feast our eyes on.

Matsoljare: Here's a closeup of the center of the M-set. Looks like navel lint to me: smiley



* navel_lint.jpg (45.13 KB, 700x374 - viewed 728 times.)
« Last Edit: October 23, 2012, 04:46:39 AM by msltoe » Logged
KRAFTWERK
Global Moderator
Fractal Senior
******
Posts: 1439


Virtual Surreality


WWW
« Reply #10 on: October 23, 2012, 08:44:05 AM »

Those Julias are beautiful  A Beer Cup
Logged

Alef
Fractal Supremo
*****
Posts: 1174



WWW
« Reply #11 on: October 23, 2012, 05:18:54 PM »

cutted julia features is nice and used colour method is nice. But probably old formula revisited Bennesi looks more grailish;)
Logged

fractal catalisator
msltoe
Iterator
*
Posts: 187


« Reply #12 on: October 24, 2012, 02:19:39 AM »

One more J-set to put out there. I made the formula more continuous if anyone is interested I'll post the formula.
I call this one "Dragons":


* dragons.jpg (172.81 KB, 1200x648 - viewed 743 times.)
Logged
Alef
Fractal Supremo
*****
Posts: 1174



WWW
« Reply #13 on: October 28, 2012, 05:01:53 PM »

Discontiniues looks better. Anyway, probably there are smooth surfaces of discontiniuaties, and not mess like Barnsley formula. At least it don't seems mess like Barnsley. Maybe this could be a transform. Like most 3D brots it is fractal in 2 dimensions, just it is more beautifull. A peacock
« Last Edit: October 28, 2012, 05:08:33 PM by Asdam » Logged

fractal catalisator
DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #14 on: January 30, 2015, 10:48:38 AM »

Ack!

Please yes post the continuous version? cheesy
Logged

No sweat, guardian of wisdom!
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
True 4d M extension: Search for the Holy Grail(s) goes on... 3D Fractal Generation « 1 2 3 » fracmonk 36 9038 Last post January 09, 2012, 07:29:16 PM
by fracmonk
Another (set of ideas) for the holy grail 3D Fractal Generation David Makin 6 4867 Last post March 14, 2011, 07:07:27 AM
by M Benesi
Julia Grail Attempt Mandelbulb3D Gallery Kali 0 1359 Last post June 08, 2011, 05:50:56 PM
by Kali
More Holy Grail 3D Fractal Generation David Makin 9 3990 Last post September 04, 2012, 09:47:36 PM
by M Benesi
Approaching the holy grail with a scoring system of the like (new) Theories & Research kjknohw 8 1116 Last post September 29, 2012, 08:32:38 PM
by M Benesi

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.267 seconds with 28 queries. (Pretty URLs adds 0.012s, 2q)