Logo by Sockratease - 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 26, 2024, 01:37:24 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  
Cubic DetailExpandedTriangular Grandeur
Expanded
Previous Image | Next Image
Description: Here is another hybrid I am working on that mixes Julia and Mandelbrot sets. The result looks really strange to me. If you look closely, there are other mini-brots in here, far away from the main set in the middle. This is zoomed out pretty far ar radius 10. No msets should be out this damn far!  :^o

The code waits for a point to escape then applies one of the jp sets, and reties the iteration this way for 16 times. Then, after that points are finally allowed to escape. Here is the algorithm:
______________________________
int g = 0;

ct_complex jp[2] = {
    { .04, .07 },
    { -.04, -.07 }
};

// iteration
z = z*z + c

if (z.real() * z.real() + z.imag() * z.imag() > 256)
{
    if (g < 16)
    {
        z *= (i % 2) ? jp[1] : jp[0];
        ++g;
        continue;
    }

    // we really escaped this time...
    // color
    return;
}
______________________________

https://plus.google.com/101799841244447089430/posts/BAkxLRM7iPn

Stats:
Total Favorities: 0 View Who Favorited
Filesize: 2.8MB
Height: 1080 Width: 1920
Keywords: fractal hybrid mandelbrot julia alternating space math art 
Posted by: Chris Thomasson May 15, 2017, 10:39:15 PM

Rating: Has not been rated yet.

Image Linking Codes
BB Code
Direct Link
Html Link
0 Members and 1 Guest are viewing this picture.
  Slideshow  

Comments (0) rss

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.138 seconds with 23 queries. (Pretty URLs adds 0.007s, 1q)