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
8
9
10
11
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
22
23
24 public static void main(String[] args) {
25 MandelbrotSetApplicationrotSetApplication.html#MandelbrotSetApplication">MandelbrotSetApplication application = new MandelbrotSetApplication();
26 }
27 }