Commit 73cfaddd authored by Timothy  Borunov's avatar Timothy Borunov
Browse files

Merged with FPSTEST

parent 10e96a99
Loading
Loading
Loading
Loading

src/Main.java

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
import Graph.readFile;

import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        readFile processInput = new readFile();
        processInput.parseCommand(args);
        processInput.makeVertexHash(processInput.path[0]);
        processInput.makeMatrix();
        System.out.print(processInput.adjMatrix.toString());
        System.out.print(Arrays.toString(processInput.getVertices()));
        System.out.print(Arrays.toString(processInput.getFaces()));
    }
}
+8 −0
Original line number Diff line number Diff line
module org.example.newmat {
    requires javafx.controls;
    requires javafx.fxml;


    opens org.example.newmat to javafx.fxml;
    exports org.example.newmat;
}
 No newline at end of file
Loading