弧形

以下代码显示如何绘制以50,50为中心,半径为25并从角度45延伸到角度315(270度长)的圆弧。

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.paint.Color;
  5. import javafx.scene.shape.Arc;
  6. import javafx.scene.shape.ArcType;
  7. import javafx.stage.Stage;
  8. public class Main extends Application {
  9. public static void main(String[] args) {
  10. Application.launch(args);
  11. }
  12. @Override
  13. public void start(Stage primaryStage) {
  14. primaryStage.setTitle("Text Fonts");
  15. Group g = new Group();
  16. Scene scene = new Scene(g, 550, 250,Color.web("0x0000FF",1.0));
  17. Arc arc = new Arc();
  18. arc.setCenterX(50.0f);
  19. arc.setCenterY(50.0f);
  20. arc.setRadiusX(25.0f);
  21. arc.setRadiusY(25.0f);
  22. arc.setStartAngle(45.0f);
  23. arc.setLength(270.0f);
  24. arc.setType(ArcType.ROUND);
  25. g.getChildren().add(arc);
  26. primaryStage.setScene(scene);
  27. primaryStage.show();
  28. }
  29. }

image.png

圆形

Circle类创建一个新的圆,其中指定的半径和中心位置以像素为单位。

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.paint.Color;
  5. import javafx.scene.shape.Circle;
  6. import javafx.stage.Stage;
  7. public class Main extends Application {
  8. public static void main(String[] args) {
  9. Application.launch(args);
  10. }
  11. @Override
  12. public void start(Stage primaryStage) {
  13. primaryStage.setTitle("Text Fonts");
  14. Group root = new Group();
  15. Scene scene = new Scene(root, 550, 250, Color.web("0x0000FF"));
  16. Circle circle = new Circle();
  17. circle.setCenterX(100.0f);
  18. circle.setCenterY(100.0f);
  19. circle.setRadius(50.0f);
  20. root.getChildren().add(circle);
  21. primaryStage.setScene(scene);
  22. primaryStage.show();
  23. }
  24. }

image.png

示例

以下代码显示了如何使用Circle构造函数传递半径和中心。

  1. import java.util.List;
  2. import javafx.application.Application;
  3. import javafx.scene.Group;
  4. import javafx.scene.Scene;
  5. import javafx.scene.paint.Color;
  6. import javafx.scene.shape.Circle;
  7. import javafx.stage.Stage;
  8. public class Main extends Application {
  9. public static void main(String[] args) {
  10. Application.launch(args);
  11. }
  12. @Override
  13. public void start(Stage primaryStage) {
  14. primaryStage.setTitle("Title");
  15. final Circle circ = new Circle(40, 40, 30);
  16. final Group root = new Group(circ);
  17. final Scene scene = new Scene(root, 400, 300);
  18. primaryStage.setScene(scene);
  19. primaryStage.show();
  20. }
  21. }

image.png

实例-2

圈形与DropShadow,如下代码所示 -

  1. import javafx.application.Application;
  2. import javafx.scene.Group;
  3. import javafx.scene.Scene;
  4. import javafx.scene.effect.DropShadow;
  5. import javafx.scene.paint.Color;
  6. import javafx.scene.shape.Circle;
  7. import javafx.scene.text.Font;
  8. import javafx.scene.text.FontWeight;
  9. import javafx.scene.text.Text;
  10. import javafx.stage.Stage;
  11. public class Main extends Application {
  12. public static void main(String[] args) {
  13. Application.launch(args);
  14. }
  15. @Override
  16. public void start(Stage primaryStage) {
  17. primaryStage.setTitle("");
  18. Group root = new Group();
  19. Scene scene = new Scene(root, 300, 250, Color.WHITE);
  20. Group g = new Group();
  21. DropShadow ds1 = new DropShadow();
  22. ds1.setOffsetY(4.0);
  23. Circle c = new Circle();
  24. c.setEffect(ds1);
  25. c.setCenterX(50.0);
  26. c.setCenterY(125.0);
  27. c.setRadius(30.0);
  28. c.setFill(Color.RED);
  29. c.setCache(true);
  30. g.getChildren().add(c);
  31. root.getChildren().add(g);
  32. primaryStage.setScene(scene);
  33. primaryStage.show();
  34. }
  35. }

image.png
getBoundsInParent()方法返回节点的边界区域,例如其宽度和高度。getBoundsInParent()计算包括节点的实际尺寸,高度,宽度,效果,平移和变换。例如,具有阴影效果的形状通过包括阴影增加其宽度。