如何制作形状数组并将其放入场景?

时间:2019-03-18 18:41:42

标签: java

我一直在从事个人的JavaFX项目,并在其中学习JavaFX,我想知道是否有办法制作矩形数组并将其添加到场景中?

1 个答案:

答案 0 :(得分:0)

这里是花花公子,这是入门的基本MCVE。但是,您将需要学习如何自己研究这些东西,因为JavaFX会变得更加复杂,而且人们不会/不能总是用勺子喂您:

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;

public class Main extends Application {
    public static void main(String[] args){ Application.launch(args); }

    public void start(Stage stage) {
        Rectangle[] rectangles = {
            new Rectangle(10, 10, 10, 10),
            new Rectangle(20, 20, 10, 10),
            new Rectangle(30, 30, 10, 10),
            new Rectangle(40, 40, 10, 10),
            new Rectangle(50, 50, 10, 10)
        };

        Group root = new Group();
        root.getChildren().addAll(rectangles);

        Scene scene = new Scene(root);

        stage.setScene(scene);
        stage.show();
    }
}