Logo by AGUS
News: Fractalforums.com Spring Fractal Art Contest 2008 - And The Winners are: - View Results
 
*
Welcome, Guest. Please login or register. January 09, 2009, 12:23:52 AM


Login with username, password and session length



Pages: [1]
  Print  
Author Topic: Twisted Mandelbrot  (Read 246 times)
0 Members and 1 Guest are viewing this topic.
doncasteel8587
Fractal Lover
**
Posts: 183



View Profile WWW
« on: June 17, 2007, 04:07:42 PM »

I'm still working on this one, but thought it was interesting enough to share.

Made with my own formulas in Fractorama

Sometimes Java.net doesn't like to link correctly, here it is on Deviant Art: http://www.deviantart.com/deviation/57785099/
Logged

Trifox
Administrator
Fractal Molossus
*****
Posts: 593


Frascinating!


View Profile WWW
« Reply #1 on: June 17, 2007, 06:23:10 PM »

nice one, i am interested in the formulas, is it just a certain filling method?
Logged

---

divide and conquer - iterate and rule
fractalmovies.com
Nahee_Enterprises
Fractal Bachius
*
Posts: 536



View Profile WWW
« Reply #2 on: June 17, 2007, 09:26:48 PM »

I'm still working on this one, but thought it was interesting enough to share.
Made with my own formulas in Fractorama

Yes, this is quite interesting!!  I am glad you shared this image with us here.     Smiley

And like Christian Kleinhuis (Trifox), I too would like to know something about the formula used.

Logged

Sincerely,
P.N.L.
-------------------------------------------------
http://home.att.net/~Paul.N.Lee/PNL_Fractals.html
http://www.Nahee.com/Fractals/
doncasteel8587
Fractal Lover
**
Posts: 183



View Profile WWW
« Reply #3 on: June 17, 2007, 10:49:33 PM »

I'm not sure how to answer Christian's question, it's more than just a coloring algorithm, but it's not truly a fractal either.
The function is iterated, but is not infinitely zoom-able. The number of iterations controls how many subdivisions it makes, and more iterations produces more detail, but it's more of a structure change.

In this case, I applied the z=z*z+c function to the pixel 4 times then passed the result through the spiral function twice, then applied the coloring algorithm.

Here's the code (the extra parentheses are required due to a precedence bug in fractorama):


formula
   {
   $maxcount = 2;
   $remapScale = 1;
   c= [-0.1,0.2];
   d= [real(sqrt(c)),imag(sqrt(c))];

   z=rotate(current,[0,0],90);
   w= z;//[0.529412,-0.529412];
   z=z^2+w;
   z=z^2+w;
   z=z^2+w;
   z=z^2+w;
   $zPow=3;
   z=rotate(z,[0,0],30);

   y=z;
   u=z;
   v=z;
   $yPow=$zPow;

   while ($count < $maxcount)
      {
      z=(z*y)-(y*z);
         z=((pow(z,$zPow)*c)+(c))/((pow(z,$zPow)*c)-(c));
         y=((pow(y,$yPow)*d)+(d))/((pow(y,$yPow)*d)-(d));
      $zPow=   $zPow^2;
      $yPow=$zPow;
      }
   set_color
      (
      1.585*((1+cos(rad(z^(5*c))*2))/2)*255-((1-sin(rad(y^(5*c))*2))/2)*255+255
      );
   }
« Last Edit: June 17, 2007, 10:58:53 PM by doncasteel8587 » Logged

doncasteel8587
Fractal Lover
**
Posts: 183



View Profile WWW
« Reply #4 on: June 17, 2007, 11:02:26 PM »

Here's a similar function applied to a Julia set, then animated..... sorry these gif's are so large, but I haven't figured out how to embed an mpeg here.

Logged

Nahee_Enterprises
Fractal Bachius
*
Posts: 536



View Profile WWW
« Reply #5 on: June 18, 2007, 04:20:56 AM »

....it's more than just a coloring algorithm, but it's not truly a fractal either.  .........
Here's the code.....

Great!!  Thank you!!    Smiley

And the animated .GIF is really interesting as well.  I like what is taking place at the center of each spiral, kind of a flashing, extremely fast, sub-animation taking place.
Logged

Sincerely,
P.N.L.
-------------------------------------------------
http://home.att.net/~Paul.N.Lee/PNL_Fractals.html
http://www.Nahee.com/Fractals/
doncasteel8587
Fractal Lover
**
Posts: 183



View Profile WWW
« Reply #6 on: June 18, 2007, 04:52:33 AM »

I like what is taking place at the center of each spiral, kind of a flashing, extremely fast, sub-animation taking place.


Honestly I hadn't noticed that happening until you mentoned it  Tongue
Turns out it's just aliasing, but it is interesting!
Logged

Pages: [1]
  Print  
GoogleTagged: fractorama

 
Jump to:  


Related Topics
Subject Started by Replies Views Last post
new set as complex as mandelbrot? New Theories & Research « 1 2 » woodlands 25 537 Last post November 13, 2006, 06:29:17 AM
by woodlands
Imaginary 3 dimensional Mandelbrot set 3d fractal generation maverdigitalarts 9 272 Last post October 28, 2006, 01:42:41 AM
by maverdigitalarts
How to freeze a spinning 3d mandelbrot ? 3d fractal generation « 1 2 » maverdigitalarts 15 248 Last post November 02, 2006, 02:05:38 AM
by Matera the Mad
The Mandelbrot INTERNAL set Programming « 1 2 » Charleswehner 17 298 Last post November 24, 2006, 03:09:43 AM
by David Makin
The Mandelbrot Set Introduction to Fractals billboll 5 266 Last post September 05, 2008, 12:14:04 AM
by Trifox

Powered by MySQL Powered by PHP Powered by SMF 1.1.7 | SMF © 2006-2008, Simple Machines LLC

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.597 seconds with 27 queries. (Pretty URLs adds 0.109s, 2q)