コード例 #1
0
ファイル: MandelImage.cs プロジェクト: mrexodia/mandelbrot
 //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);
 }
コード例 #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));
        }