Classes
Class | Description | |
---|---|---|
Fractal |
Calculates mandelbrot fractal values with doubles (very fast in C# with some optimizations).
Should be called in parallel. Obviously keeping the maxIterations low yields in the fastest
results, but the fractals become more interesting and zoom-able if high values are used.
View code on GitHub | |
Zoomer |
Provides a fast Mandelbrot fractal zoomer, use the Fractal constructor parameters to customize
the iterations and color scaling. Utilizes all your CPU cores to calculate new images. Fractal
uses doubles, which is pretty good for zooming in about a million times, then it gets blurry.
View code on GitHub |