1 package org.woehlke.simulation.dla;
2
3 import org.woehlke.simulation.dla.view.desktop.DiffusionLimitedAggregationFrame;
4
5 /**
6 * Diffusion Limited Aggregation.
7 *
8 * (C) 2006 - 2013 Thomas Woehlke.
9 * https://thomas-woehlke.blogspot.com/2016/01/diffusion-limited-aggregation.html
10 * @author Thomas Woehlke
11 */
12 public class DiffusionLimitedAggregationDesktop {
13
14 private DiffusionLimitedAggregationDesktop() { }
15
16 /**
17 * Starting the App.
18 * @param args CLI Parameter
19 */
20 public static void main(String[] args) {
21 DiffusionLimitedAggregationFrameml#DiffusionLimitedAggregationFrame">DiffusionLimitedAggregationFrame diffusionLimitedAggregation = new DiffusionLimitedAggregationFrame();
22 }
23 }