From 951032ffbe7a1018b95064b6a4bdac0e8148c0eb Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 26 Oct 2014 12:38:04 -0400 Subject: add a couple helper functions --- examples/mandelbrot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') 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()) -- cgit v1.2.3-54-g00ecf