Logo by HPDZ - 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 us on facebook
 
*
Welcome, Guest. Please login or register. March 28, 2024, 10:39:48 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]   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: partial anti-buddhabrot  (Read 2675 times)
0 Members and 3 Guests are viewing this topic.
Freakadella
Forums Newbie
*
Posts: 1


« on: October 17, 2012, 09:24:29 PM »

I was generating the anti-Buddhabrot, when I decided to generate a really high resolution one. I soon discovered, that it took a very long time to calculate , so I changed my code to display the Image while it was generating. My mind was blown.

These are some of the images that I generated after discovering this effect.







Logged
Pauldelbrot
Fractal Senior
******
Posts: 2592



pderbyshire2
« Reply #1 on: October 17, 2012, 09:55:40 PM »

Electric neon!
Logged

tit_toinou
Iterator
*
Posts: 192


« Reply #2 on: December 16, 2012, 04:10:12 PM »

Nice!
With a random complex number you have a great chance to deal with a point inside the mandelbrot with a low period (a lot of points inside the mandelbrot set have cyclic orbits)...
I think that the interesting orbits to plot are thoses before it gets periodic or thoses that are not periodic. But I don't know how to find them..
Logged

Alef
Fractal Supremo
*****
Posts: 1174



WWW
« Reply #3 on: December 17, 2012, 12:25:18 PM »

Nice!
I think that the interesting orbits to plot are thoses before it gets periodic or thoses that are not periodic. But I don't know how to find them..

Nice stuff.

Well, in Chaos Pro (none likes it, becouse it is UF clone) there are formulas with triple bailout conditions, convergent, divergent and cyclic. It bails out when orbits become periodic (after 1/2 of maxiter is reached), and they become periodic in the insides.

//before iterations
maxiter_2=maxiter/2-1; //(only after half of maximal iterations)

//in iteration loop
if (numiter==maxiter_2)
{
z_cyc=z;
}
//fractal formula    
z=z^2 + c;
//Here goes bailout:
bContinue=true;

if (testcyc)
{
if (numiter>maxiter_2 && sqr(real(z_cyc)-real(z)) + sqr(imag(z_cyc)-imag(z))<bailin)
{
bContinue=false;
}
}

//with variables
bailin.caption = "Bailin Value";
bailin.default = 0.08;
bailin.min = 0.000000000000000000000000001;
bailin.hint = "Defines the bailin radius: As soon as a pixel falls inside a circle with this radius, the iteration stops.";


Maybe this could help.
Logged

fractal catalisator
eiffie
Guest
« Reply #4 on: December 18, 2012, 06:04:49 PM »

I just had the same experience smiley This is way better than the finished anti-buddha.
Logged
eiffie
Guest
« Reply #5 on: December 21, 2012, 06:00:01 PM »

Not trying to hijack - but this is a very simple technique for creating quick and interesting images.
Here i just took random points near the border and recorded their death spiral
« Last Edit: December 21, 2012, 09:00:38 PM by eiffie, Reason: removed attachment, added link » Logged
Alef
Fractal Supremo
*****
Posts: 1174



WWW
« Reply #6 on: December 21, 2012, 06:05:13 PM »

With such good images I woun't have anything against you hijacking tread police  cheesy
Logged

fractal catalisator
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Low iteration anti-buddhabrot Mandelbrot & Julia Set ker2x 1 4498 Last post December 30, 2009, 03:51:32 AM
by ker2x
Orbit density map (aka anti-buddhabrot) rotation Movies Showcase (Rate My Movie) aluminumstudios 5 6089 Last post September 17, 2013, 06:06:28 PM
by Alef
M-Set on a Partial/Total Mobius Cylinder looks neat Mandelbrot & Julia Set « 1 2 » Hiato 17 10940 Last post July 28, 2015, 02:16:22 PM
by claude
3D Anti-buddhabrot Programming ker2x 7 3260 Last post July 29, 2014, 06:57:45 PM
by knighty
Duo pack of zoom vids - Cubic Partial BS Real Movies Showcase (Rate My Movie) youhn 10 1205 Last post October 28, 2014, 07:26:45 PM
by youhn

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 24 queries. (Pretty URLs adds 0.006s, 2q)