//get the mandel number for a specified point in the mandelbrot image public int mandelPointToNumber(MandelPoint point) { MandelNumber mandelNumber = new MandelNumber(maxLoop); return mandelNumber.calculate(point); }
//get the mandel number for a specified point in the mandelbrot image public int mandelPointToNumber(MandelPoint point) { MandelNumber mandelNumber = new MandelNumber(maxLoop); return(mandelNumber.calculate(point)); }