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