mandelbrot/mand
Yann Esposito (Yogsototh) e937436f0c Updated to use repa 3
2013-01-15 15:49:17 +01:00

14 lines
236 B
Bash
Executable file

#!/usr/bin/env zsh
# image width height
width=2048
height=1024
nbsteps=1024
xpos="-1.45203"
ypos="0"
size="0.0001"
filename="mandelbrot.png"
PARAMS="$width $height $nbsteps $xpos $ypos $size $filename"
eval time ./mandelbrot $PARAMS