Zotoaster, here's a tutorial I wrote (in French, I'm sorry) which explains how to draw fractals like Van B's.
http://www.seuret.com/darkbasic/index.php?rub=fractales
If you don't understand French, try to use the translator of google or just copy/past the code and try to understand it
Hmm.. The tutorial explains only how to make them in black and white... If you want color, you've to :
- load a bitmap like the ones you see there :
http://www.mircscripts.org/downloads/screenshots/degrade%5B05-01%5D.png
Its dimensions should be x*255 or 255*x
- instead of making a grey color with rgb(g,g,g), get the color at the coordinates x,g (or g,x) from the bitmap
- draw the dot with the color you got before.
Reading bitmap is slow, you should also read all the colors at the beggining of your program, stock them in an array and then read the array instead of the bitmap.
The sleeper must awaken !