Tagged Questions
20
votes
6answers
1k views
Practical Uses of Fractals in Programming
Fractals have always been a bit of a mystery for me.
What practical uses (beyond rendering to beautiful images) are there for fractals in the various programming problem domains? And please, don't ...
13
votes
4answers
4k views
Smooth spectrum for Mandelbrot Set rendering
I'm currently writing a program to generate really enormous (65536x65536 pixels and above) Mandelbrot images, and I'd like to devise a spectrum and coloring scheme that does them justice. The ...
8
votes
4answers
214 views
Generating the Sierpinski triangle iteratively in Mathematica?
I have written code which draws the Sierpinski fractal. It is really slow since it uses recursion. Do any of you know how I could write the same code without recursion in order for it to be quicker? ...
6
votes
3answers
420 views
Pseudorandom directory tree generation?
I'm trying to write a program which will pseudorandomly autogenerate (based on a seed value so I can re-run the same test more than once) a growing directory structure consisting of files. (this is to ...
2
votes
2answers
260 views
How to make a color progression out of a color palette
My goal with this algorithm I'm working on is to output a color progression out of some provided colors. By color progression I mean creating the "fade" effect between two colors (color A, color B) ...
1
vote
2answers
110 views
Julia Set In Javascript
I'm messing around with some Mandlebrot set stuff because I think the pictures it produces are pretty. I thought I might try to tackle the problem of drawing one in javascript to see what I could do. ...
1
vote
1answer
349 views
Generating random tree branch
I want to generate (an image of) a single branch of a tree (the "woody plant" kind). Maybe similar to this branch, or this one.
I need it to be interesting but simple, so just one branch, with a few ...
0
votes
1answer
80 views
Issue with “inside-out” implementation of diamond-square fractal
I'm working on a Python script that generates a (wrapping) diamond-square fractal in the reverse of the usual order: Instead of starting from the outside corners and subdividing into smaller squares, ...