18). Write a program that moves a circle up, down, left or right using arrow keys. import javafx.application.Application; import javafx.geometry.Insets; import javafx.scene.Scene; import javafx.scene.layout.Pane; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.stage.Stage; public class Program_18 extends Application { @Override public void start(Stage primaryStage) { Pane pane = new Pane(); pane.setPadding(new Insets(20, 20, 20, 20)); Circle circle = new Circle(20, 20, 20); circle.setFill(Color.RED); pane.getChildren().add(circle); pane.setOnKeyPressed(e -<{ switch (e.getCode()) { case UP: circle.setCenterY( circle.getCenterY() < circle.getRadius() ? circle.getCenterY() - 10 : circle.getCenterY()); break; case DOWN: circle.setCenterY( ...
Comments
very bad to tell.