2021-02-02 15:46:38 +01:00
|
|
|
package lsystem;
|
|
|
|
|
2021-02-05 19:28:55 +01:00
|
|
|
import lsystem.engine.Parser;
|
2021-02-05 22:35:05 +01:00
|
|
|
import lsystem.engine.Rewrite;
|
|
|
|
|
2021-02-02 15:46:38 +01:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Scanner;
|
2021-02-16 15:06:50 +01:00
|
|
|
import lsystem.screen.MainFrame;
|
2021-02-16 18:04:55 +01:00
|
|
|
import lsystem.screen.SwingGLCanvas;
|
2021-02-02 15:46:38 +01:00
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2021-02-16 15:06:50 +01:00
|
|
|
|
|
|
|
MainFrame frame = new MainFrame();
|
|
|
|
frame.setVisible(true);
|
2021-02-16 18:04:55 +01:00
|
|
|
SwingGLCanvas canvas = new SwingGLCanvas();
|
2021-02-16 16:20:25 +01:00
|
|
|
|
2021-02-02 15:46:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|