summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-25 10:23:26 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-25 10:23:26 -0400
commit98292bb163c83b9d2472e286a4e5d034cff028ce (patch)
treef6a13997da72dda3046a670a1c10466e511eebba /examples
parent264fa55dcf2d72d8ddf0bb6fd96be29e4e57d666 (diff)
downloadjulia-fractals-98292bb163c83b9d2472e286a4e5d034cff028ce.tar.gz
julia-fractals-98292bb163c83b9d2472e286a4e5d034cff028ce.zip
make this parameterized
Diffstat (limited to 'examples')
-rw-r--r--examples/mandelbrot.jl2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/mandelbrot.jl b/examples/mandelbrot.jl
index ab618d4..a9cfcae 100644
--- a/examples/mandelbrot.jl
+++ b/examples/mandelbrot.jl
@@ -8,7 +8,7 @@ iterations = 45
imgsize = 500
img = [ Color.HSV(0, 0, 0) for x=1:imgsize, y=1:imgsize ]
-m = Fractal.Mandelbrot(imgsize)
+m = Fractal.Mandelbrot{Float64}(imgsize)
imgc, imgslice = view(img)