1234567891011121314151617181920212223242526 |
- package main;
- import graph.InitializeNodePositions;
- import graph.LayeredGraphNode;
- import graph.io.Reader;
- import view.MainView;
- public class Main {
-
- public static void main(String[] args) {
- Reader r = new Reader( "logo.json" );
- LayeredGraphNode graph = r.readInputGraph();
- InitializeNodePositions.placeNodes( graph );
- new MainView( graph );
- }
- }
|