The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!
|
|
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
|
||||||
0 Members and 1 Guest are viewing this picture. |
|
Comments (0) |
Powered by SMF Gallery Pro