View Javadoc
1   package org.woehlke.computer.kurzweil.mandelbrot;
2   
3   import org.woehlke.computer.kurzweil.mandelbrot.config.Config;
4   import org.woehlke.computer.kurzweil.mandelbrot.view.ApplicationFrame;
5   
6   /**
7    * Mandelbrot Set drawn by a Turing Machine.
8    *
9    * (C) 2006 - 2015 Thomas Woehlke.
10   * https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html
11   * @author Thomas Woehlke
12   */
13  public class MandelbrotSetApplication {
14  
15      private MandelbrotSetApplication() {
16          Configweil/mandelbrot/config/Config.html#Config">Config config = new Config();
17          ApplicationFrameelbrot/view/ApplicationFrame.html#ApplicationFrame">ApplicationFrame frame = new ApplicationFrame(config);
18      }
19  
20      /**
21       * Starting the Application.
22       * @param args CLI Parameter
23       */
24      public static void main(String[] args) {
25          MandelbrotSetApplicationrotSetApplication.html#MandelbrotSetApplication">MandelbrotSetApplication application = new MandelbrotSetApplication();
26      }
27  }