JavaFX - 二维图形 弧形类型



在 JavaFX 中,您可以绘制三种类型的弧,即:

  • 开放 - 完全未闭合的弧称为开放弧。

  • - 弦是一种用直线闭合的弧形。

  • 圆形 - 圆形弧是一种通过连接起点和终点到椭圆中心的弧形。

Open Closed Round

您可以使用setType()方法通过传递以下任何属性来设置弧形类型:ArcType.OPEN、ArcType.CHORD、ArcType.Round

绘制弧形的步骤

要在 JavaFX 中绘制弧形,请按照以下步骤操作。

步骤 1:创建类

创建一个 Java 类并继承javafx.application包中的Application类,并实现该类的start()方法,如下所示。

public class ClassName extends Application {  
   @Override     
   public void start(Stage primaryStage) throws Exception {      
   }    
} 

步骤 2:创建弧形

您可以在 JavaFX 中通过实例化名为Arc的类来创建弧形,该类属于javafx.scene.shape包。您可以像下面这样实例化此类。

//Creating an object of the class Arc         
Arc arc = new Arc();

步骤 3:设置弧形属性

指定椭圆(此弧是其一部分)中心的 x、y 坐标。这些坐标包括 – radiusX、radiusY、起始角度和弧长,使用它们各自的 setter 方法,如以下代码块所示。

您还可以使用setType()方法设置弧形类型(圆形、弦形、开放形)。

//Setting the properties of the arc 
arc.setCenterX(300.0f); 
arc.setCenterY(150.0f); 
arc.setRadiusX(90.0f); 
arc.setRadiusY(90.0f); 
arc.setStartAngle(40.0f); 
arc.setLength(239.0f); 
arc.setType(ArcType.ROUND);

步骤 4:设置弧形类型

您可以使用setType()方法设置弧形类型,如以下代码块所示。

//Setting the type of the arc 
arc.setType(ArcType.ROUND);

步骤 5:创建 Group 对象

start()方法中,通过实例化名为Group的类创建一个组对象,该类属于javafx.scene包。

将上一步中创建的 Arc(节点)对象作为参数传递给 Group 类的构造函数。这应该在将其添加到组中时完成,如下所示:

Group root = new Group(arc);

步骤 6:创建 Scene 对象

通过实例化名为Scene的类创建一个场景,该类属于javafx.scene包。为此类传递上一步中创建的 Group 对象(root)

除了根对象之外,您还可以传递两个表示屏幕高度和宽度的双精度参数以及 Group 类的对象,如下所示。

Scene scene = new Scene(group ,600, 300);

步骤 7:设置 Stage 的标题

您可以使用Stage 类setTitle()方法设置 Stage 的标题。primaryStage是传递给场景类的 start 方法作为参数的 Stage 对象。

使用primaryStage对象,将场景的标题设置为Sample Application,如下所示。

primaryStage.setTitle("Sample Application");

步骤 8:将 Scene 添加到 Stage

您可以使用名为Stage的类的setScene()方法将 Scene 对象添加到 Stage。使用此方法添加上一步中准备的 Scene 对象,如下所示。

primaryStage.setScene(scene); 

步骤 9:显示 Stage 的内容

使用名为Stage类的show()方法显示场景的内容,如下所示。

primaryStage.show();

步骤 10:启动应用程序

通过从 main 方法调用Application类的静态方法launch()来启动 JavaFX 应用程序,如下所示。

public static void main(String args[]){   
   launch(args);      
} 

示例

以下是一个生成弧形的程序。将此代码保存在名为ArcExample.java的文件中。

import javafx.application.Application; 
import javafx.scene.Group; 
import javafx.scene.Scene;
import javafx.stage.Stage; 
import javafx.scene.shape.Arc;  
import javafx.scene.shape.ArcType; 
        
public class ArcExample extends Application { 
   @Override 
   public void start(Stage stage) { 
      //Drawing an arc 
      Arc arc = new Arc(); 
         
      //Setting the properties of the arc 
      arc.setCenterX(300.0f); 
      arc.setCenterY(150.0f); 
      arc.setRadiusX(90.0f); 
      arc.setRadiusY(90.0f); 
      arc.setStartAngle(40.0f); 
      arc.setLength(239.0f);  
      
      //Setting the type of the arc 
      arc.setType(ArcType.ROUND);         
         
      //Creating a Group object  
      Group root = new Group(arc); 
         
      //Creating a scene object 
      Scene scene = new Scene(root, 600, 300);  
      
      //Setting title to the Stage 
      stage.setTitle("Drawing an Arc"); 
         
      //Adding scene to the stage 
      stage.setScene(scene); 
         
      //Displaying the contents of the stage
      stage.show(); 
   }   
   public static void main(String args[]){ 
      launch(args); 
   } 
}

使用以下命令从命令提示符编译并执行保存的 Java 文件。

javac ArcExample.java 
java ArcExample

执行后,上述程序生成一个 JavaFX 窗口,显示如下屏幕截图所示的弧形。

Drawing Arc
javafx_2d_shapes.htm
广告