CanvasShapes.java

See also

CanvasShapesController.java
CanvasShapes.fxml


CanvasShapes.java

// CanvasShapes.java
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class CanvasShapes extends Application {
   @Override
   public void start(Stage stage) throws Exception {
      Parent root = 
         FXMLLoader.load(getClass().getResource("CanvasShapes.fxml"));
      
      Scene scene = new Scene(root);
      stage.setTitle("Draw shapes with Canvas");
      stage.setScene(scene);
      stage.show();
   }

   public static void main(String[] args) {
      launch(args);
   }
}


Maintained by John Loomis, updated Sat Feb 10 10:37:57 2018