vote up 1 vote down star

what is a good book to learn fractal programming? I am a programmer, I am looking at a book that will be more algorithmic than mathematical (at least not in the beginning chapters). Should teach me the basics of fractals and different ways to generate them.

flag
1  
As a programmer you should be able to take an equation and turn it into an algorithm. – James Black Oct 31 at 17:16
there is science and then there is art. The science of implementing is fairly straightforward. The art can often be difficult and is often specific to a particular topic. – Jason S Oct 31 at 17:18
Well, it depends on the equation as to how easy it is to come up with a sensible algorithm - but I broadly agree. – FinnNk Oct 31 at 17:22
Possible duplicate : stackoverflow.com/questions/425953/… – Ravi Oct 31 at 17:55

5 Answers

vote up 1 vote down

When trying to learn the Mandelbrot set, I found this link useful. http://warp.povusers.org/Mandelbrot/

link|flag
that is a very good tutorial, thank you so much – unknown (google) Oct 31 at 17:13
vote up 1 vote down

You might find the electric sheep project interesting. It's an open source, distributed programming project that generates fractal animations.

Scott Drave's original paper on the electric sheep algorithm is a nice introduction to the algorithm used, and it concentrates mostly on the algorithmic aspect of creating the fractal image: http://flam3.com/flame.pdf

link|flag
The link to the electric sheep project: community.electricsheep.org – Iris Nov 8 at 19:55
vote up 0 vote down

For more than just Mandlebrot stuff if you can get ahold of "The Science of Fractal Images". It's an old book now (I read it when it was first published in 1988) but it's full of bits and pieces to try out.

link|flag
vote up 0 vote down

A "golden oldie" site is Fractint: http://en.wikipedia.org/wiki/Fractint. Fractint is 20 years old and pioneered some of the ethos in collaborative computing. Some of the algorithms needed to increase precision are not trivial and this group developed integer arithmetic to support fractals.

Worth visiting to get the feel if nothing else.

But also visit http://en.wikipedia.org/wiki/Fractal-generating%5Fsoftware. There's a huge variety.

Note that some fractals such as the Mandelbrot set are "pixel-based" while others such as the "Snowflake curve" can use vector graphics. You'll need both approaches.

link|flag
vote up 0 vote down

Some links

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.