Soldato
- Joined
- 12 Apr 2004
- Posts
- 11,788
- Location
- Somewhere
I've been playing around with fractal patterns in C# and I've built a program to render the Mandelbrot set, which involves rendering the pattern on a pixel-by-pixel basis (the algorithm i've written does this randomly to produce a nice effect
).
Currently I'm using a Bitmap object and using the method SetPixel() to set the colour of each pixel individually, however this seems to be a very slow way of doing it... is there any better way?
Cheers

Currently I'm using a Bitmap object and using the method SetPixel() to set the colour of each pixel individually, however this seems to be a very slow way of doing it... is there any better way?

Cheers

Last edited: