You are not logged in.
Pages: 1
in the past ive done plenty of normal fractal renderings, normal mandelbrot, or strange wonderful things, ive done quaternion fractals, one thing ive never tried, is the buddhabrot method of displaying a fractal, i decided id have a go, and heres the result...
it took about 6 mins to render (512*512) using my own style of colouring
Last edited by luca-deltodesco (2006-07-27 22:11:56)
The Beginning Of All Things To End.
The End Of All Things To Come.
Offline
Now I know why they call it buddhabrot.
What did you use for the rendering?
"In the real world, this would be a problem. But in mathematics, we can just define a place where this problem doesn't exist. So we'll go ahead and do that now..."
Offline
Now I know why they call it buddhabrot.
What did you use for the rendering?
i wrote my own little program for it
heres another one in the more traditional colouring style
The Beginning Of All Things To End.
The End Of All Things To Come.
Offline
Very pretty - they look like nebula-filled star clusters. The first two look like photos, and the last is how you might see it through a telescope.
El que pega primero pega dos veces.
Offline
i wrote my own little program for it
Right, what was the program written in? Any libraries used (OpenGL, DirectX, Maya, etc)?
"In the real world, this would be a problem. But in mathematics, we can just define a place where this problem doesn't exist. So we'll go ahead and do that now..."
Offline
i wrote my own little program for it
Right, what was the program written in? Any libraries used (OpenGL, DirectX, Maya, etc)?
i wrote it in C++, using win32 to set up the window and do bitmap saving to disk, and i used OpenGL to display it on the screen (using SetPixel is slower than using glVertex2f which is slower again than if every frame i just create a new version of the bitmap as a texture in openGL and display that)
for the normal fractal one in the images below, i just used a very slightly modified code
the next set of images are
colourful z[n+1] = z[n]^3 + c
monotone
and then the normal fractal equivalent showing which pixels escape, which dont, to see the relation to buddhabrot image
The Beginning Of All Things To End.
The End Of All Things To Come.
Offline
Pages: 1