Logo by KRAFTWERK - 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: Visit the official fractalforums.com Youtube Channel
 
*
Welcome, Guest. Please login or register. March 19, 2024, 03:25:01 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!



 
  Search  

  Slideshow  
Cast IXBrother And SisterI Heart Fractals 2
Brother And Sister
Previous Image | Next Image
Description: MDZ generalized celtic | mandelbrot variant
Stats:
Total Favorities: 0 View Who Favorited
Filesize: 398.65kB
Height: 800 Width: 480
Keywords: mdz variant mandelbrot celtic 
Posted by: jwm-art November 14, 2010, 09:49:47 PM

Rating: **** by 2 members.

Image Linking Codes
BB Code
Direct Link
Html Link
0 Members and 1 Guest are viewing this picture.
Related Images
Big Brother is watching you


Rating: *****
Filesize: 464.16kB
Date: February 13, 2011, 04:53:17 PM
Comments (0)
By: popol4444
  Slideshow  

Comments (10) rss
hermann
Iterator
*
Posts: 181



View Profile WWW
December 04, 2010, 09:00:05 AM


I have implemented an interactive gallery using this algorithm.
With a Java-Plugin in the prowser it is possible to explore more details.
Very interesting structures.
http://www.wackerart.de/celtic-mandelbrot.html
jwm-art
Iterator
*
Posts: 171



View Profile WWW
November 18, 2010, 11:51:51 AM
I've been applying some Mandelbrot exploration techniques to this fractal:






hermann
Iterator
*
Posts: 181



View Profile WWW
November 18, 2010, 11:20:19 AM
Some of the result from my research last night:





jwm-art
Iterator
*
Posts: 171



View Profile WWW
November 17, 2010, 05:54:25 PM
I decided to ask the question in the programming sub forum:
http://www.fractalforums.com/programming/mandelbrot-variation-ii-(does-it-have-a-name)
hermann
Iterator
*
Posts: 181



View Profile WWW
November 17, 2010, 05:22:25 PM
Do we have a name for it?
In my applet I named it celtic mandelbrot.
jwm-art
Iterator
*
Posts: 171



View Profile WWW
November 17, 2010, 04:07:55 PM
I suppose it could be considered a 2D "hybrid"? Or perhaps it's a cannibalistic fractal shocked
hermann
Iterator
*
Posts: 181



View Profile WWW
November 16, 2010, 09:52:54 PM
I have implemented the formula in my fractal generator applet.
http://www.wackerart.de/fractal.html
Algorithm->Celtic->Celtic Mandelbrot.
Proposal: Use the Gold Mine Layout for the first exploring steps. For greater details use adaptive layouts.

The following structure I have discovered this evening, on my first expedition through this fractal.
Very interesting fractals can be created by this algorithm.
One can find mixtures of structures normely created by algorithms like mandelbrot, mandelbar, burning ship and glynn algorithms.

hermann
Iterator
*
Posts: 181



View Profile WWW
November 16, 2010, 10:58:43 AM
Thanks for the formula.
I'll try to implement it.
jwm-art
Iterator
*
Posts: 171



View Profile WWW
November 15, 2010, 12:35:14 PM
I used a combination of Mandelbrot and its "Generalized Celtic" variant:

Code:
   for (wz = 1; wz <= depth; ++wz)
    {
        wim = 2.0 * wre * wim + c_im;
        if (wz % 2) /* if iteration count is odd */
            wre = fabsl(wre2 - wim2) + c_re; /* generalized celtic */
        else
            wre = wre2 - wim2 + c_re;         /* mandelbrot */
        wim2 = wim * wim;
        wre2 = wre * wre;
        if (wim2 + wre2 > 4.0F)
            return wz;
    }
hermann
Iterator
*
Posts: 181



View Profile WWW
November 15, 2010, 09:56:00 AM
A combination of a mandelbar and a mandelbrot!
Which kind of algorithm did you use?

Return to Gallery

Powered by SMF Gallery Pro

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.358 seconds with 31 queries. (Pretty URLs adds 0.005s, 1q)