Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Pane root = new Pane();
- Rectangle rect = new Rectangle(25,25,50,50);
- rect.setFill(Color.RED);
- Line line = new Line(90,40,230,40);
- line.setStroke(Color.BLACK);
- Circle circle = new Circle(130,130,30);
- circle.setFill(Color.CHOCOLATE);
- CubicCurve curve = new CubicCurve(100,200,150,250,200,120,350,180);
- curve.setStroke(Color.ROYALBLUE);
- curve.setFill(Color.AQUA);
- root.getChildren().addAll(rect, line, circle, curve);
- Scene scene = new Scene(root, 400, 220, Color.WHITESMOKE);
- primaryStage.setTitle("JavaFX Shape Demo");
- primaryStage.setScene(scene);
- primaryStage.show();
Advertisement
Add Comment
Please, Sign In to add comment