Re: mandelbrots generated with skewed complex-number rules
- From: Ron Croonenberg <ronc@xxxxxxxxxx>
- Date: Sun, 03 Feb 2008 15:14:52 -0500
How/where did you compute 'white hot heat' ?
(what's the center of the area ?)
jellovirus wrote:
I was writing a fractal generator, and just for the heck of it, I.
decided to screw with the multiplication rule for complex numbers. I
was quite amazed at what I got. From far off, the image looks much more
chaotic than regular mandelbrots, and changes to the seed seem to change
the image more. But it produced many different kinds of images, all
self-symmetrical and all very beautiful. I've posted the code and a
link to some images generated with this method. I've not seen any like
this before, but if anybody has seen this before, I'd like to know about
it.
http://www.photoblog.com/screamingcactus/2008/01/25/warped-plane-mandels.html
Other than the changes you see below, the rest of the code is exactly
like a regular mandelbrot test.
zr = z.real;
zi = z.imag;
z.real = zr * zr - zr * zi + c.real;
z.imag = zi * zi + zr * zi + c.imag;
- References:
- mandelbrots generated with skewed complex-number rules
- From: jellovirus
- mandelbrots generated with skewed complex-number rules
- Prev by Date: mandelbrots generated with skewed complex-number rules
- Next by Date: Re: mandelbrots generated with skewed complex-number rules
- Previous by thread: mandelbrots generated with skewed complex-number rules
- Next by thread: Re: mandelbrots generated with skewed complex-number rules
- Index(es):
Relevant Pages
|
|