2021-02-02 15:46:38 +01:00
|
|
|
package lsystem;
|
|
|
|
|
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-03-01 12:41:47 +01:00
|
|
|
SwingGLCanvas canvas = new SwingGLCanvas();
|
2021-02-16 16:20:25 +01:00
|
|
|
|
2021-02-02 15:46:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|