Skip to content
Snippets Groups Projects
Select Git revision
  • 44d01dade861aff130a73962b899004639474ae9
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

Main.java

  • Forked from LABOUREL Arnaud / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Main.java 604 B
    package viewer;
    
    import javafx.application.Application;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    
    public class Main extends Application {
    
        @Override
        public void start(Stage primaryStage) throws Exception {
            Parent root = FXMLLoader.load(getClass().getClassLoader().getResource("viewer/viewer.fxml"));
            primaryStage.setTitle("Mandelbrot");
            primaryStage.setScene(new Scene(root, 1200, 900));
            primaryStage.show();
        }
    
    
        public static void main(String[] args) {
            launch(args);
        }
    }