summaryrefslogtreecommitdiffstats
path: root/examples/mandelbrot.jl
blob: 9bcc818ca0566672513ac6cab99041d6e18186a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using Tk
using ImageView
using Color

using FractalExplorer

iterations = 45
imgsize = (640, 480)

imgc, imgslice = view([ HSV(0, 0, 0) for y=1:imgsize[2], x=1:imgsize[1] ])
mandelbrot(imgc, iterations)