summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-10-26 12:38:04 -0400
committerJesse Luehrs <doy@tozt.net>2014-10-26 12:38:04 -0400
commit951032ffbe7a1018b95064b6a4bdac0e8148c0eb (patch)
tree25789d32dab84cb33b35d2624e348e49c5c7e8bb /examples
parent54a5bb3d9e56bd8290a677ee50700bec422bb94f (diff)
downloadjulia-fractals-951032ffbe7a1018b95064b6a4bdac0e8148c0eb.tar.gz
julia-fractals-951032ffbe7a1018b95064b6a4bdac0e8148c0eb.zip
add a couple helper functions
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 c73f2c9..2b9d26d 100644
--- a/examples/mandelbrot.jl
+++ b/examples/mandelbrot.jl
@@ -8,7 +8,7 @@ iterations = 45
imgsize = (640, 480)
imgc, imgslice = view([ HSV(0, 0, 0) for y=1:imgsize[2], x=1:imgsize[1] ])
-FractalExplorer.render(imgc, iterations)
+mandelbrot(imgc, iterations)
#If we are not in a REPL
if (!isinteractive())