View Javadoc
1   package org.woehlke.computer.kurzweil;
2   
3   import org.woehlke.computer.kurzweil.application.ComputerKurzweilProperties;
4   import org.woehlke.computer.kurzweil.tabs.mandelbrot2julia.Mandelbrot2JuliaTab;
5   
6   import java.io.File;
7   import java.net.URL;
8   
9   /**
10   * Mandelbrot Set drawn by a Turing Machine.
11   *
12   * (C) 2006 - 2015 Thomas Woehlke.
13   * https://thomas-woehlke.blogspot.com/2016/01/mandelbrot-set-drawn-by-turing-machine.html
14   * @author Thomas Woehlke
15   */
16  public class Mandelbrot2JuliaApplication {
17  
18      private Mandelbrot2JuliaApplication() {
19          String configFileName = "/application.yml";
20          URL fileUrl = getClass().getResource(configFileName);
21          File configFile = new File(fileUrl.getFile());
22          ComputerKurzweilProperties properties = ComputerKurzweilProperties.propertiesFactory(configFile);
23          Mandelbrot2JuliaTablbrot2julia/Mandelbrot2JuliaTab.html#Mandelbrot2JuliaTab">Mandelbrot2JuliaTab frame = new Mandelbrot2JuliaTab(properties);
24      }
25  
26      /**
27       * Starting the Application.
28       * @param args CLI Parameter
29       */
30      public static void main(String[] args) {
31          Mandelbrot2JuliaApplicationion.html#Mandelbrot2JuliaApplication">Mandelbrot2JuliaApplication application = new Mandelbrot2JuliaApplication();
32      }
33  }