Name | Modified | Size | Downloads / Week |
---|---|---|---|
Readme.txt | 2012-02-19 | 1.7 kB | |
AbsMandVars64.zip | 2012-02-19 | 8.8 kB | |
AbsMandVars.zip | 2012-02-19 | 8.1 kB | |
AbsMandVarsSource.zip | 2012-02-19 | 28.9 kB | |
Totals: 4 Items | 47.4 kB | 1 |
AbsMandVars.zip contains the Windows dll for 32 bit Fractal Extreme. AbsMandVars64.zip contains the dll for 64 bit Fractal Extreme. Copy the dll into the plugins dirctory of Fractal Extreme. On 32bit Windows that should be C:\Program Files\Cygnus Software\Fractal Extreme\Plugins On 64bit windows for the 64bit plpugin that will be C:\Program Files\Cygnus Software\Fractal Extreme\Plugins64 and for the 32bit version of the plugin C:\Program Files (x86)\Cygnus Software\Fractal Extreme\Plugins. The plugin creates three variations of the classic mandelbrot algorithm. Burning Ship uses the abs funtion on the imaginary side of the equation. If the standard mandelbrot is. double zrsqr = zr * zr; double zisqr = zi * zi; int count = 0; for (/**/; count < MaxIters && zrsqr + zisqr < OverFlowPoint; count++) { zi =zr * zi * 2.0 - JuliaI; zr = zrsqr - zisqr - JuliaR; zisqr = zi * zi; zrsqr = zr * zr; } Burning ship is double zrsqr = zr * zr; double zisqr = zi * zi; int count = 0; for (/**/; count < MaxIters && zrsqr + zisqr < OverFlowPoint; count++) { zi = abs(zr * zi) * 2.0 - JuliaI; zr = zrsqr - zisqr - JuliaR; zisqr = zi * zi; zrsqr = zr * zr; } Celtic Mandelbrot is for (/**/; count < MaxIters && zrsqr + zisqr < OverFlowPoint; count++) { zi = zr * zi * 2.0 + JuliaI; zr = abs(zrsqr - zisqr) + JuliaR; zisqr = zi * zi; zrsqr = zr * zr; } And Buffalo is for (/**/; count < MaxIters && zrsqr + zisqr < OverFlowPoint; count++) { zi = abs(zr * zi) * 2.0 - JuliaI; zr = abs(zrsqr - zisqr) - JuliaR; zisqr = zi * zi; zrsqr = zr * zr; }