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

SubPixel.java

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    App.java 519 B
    package state;
    
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    
    public class App extends Application {
    
        public static void main(String[] args) {
            launch(args);
        }
    
        @Override
        public void start(Stage primaryStage) {
            Group root = new Group();
            Drawer container = new Drawer(800, 600);
            root.getChildren().add(container);
            primaryStage.setScene(new Scene(root));
            primaryStage.show();
        }
    }