See also
ThreeDimensionalShapes.java// ThreeDimensionalShapes.java
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class ThreeDimensionalShapes extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root =
FXMLLoader.load(getClass().getResource("ThreeDimensionalShapes.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 11:38:53 2018