Exemplo n.º 1
0
 //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);
 }
Exemplo n.º 2
0
        //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));
        }