JavaFX |关闭路径类
ClosePath 类是 JavaFX 的一部分。 ClosePath 类通过连接指定路径的两个未连接端来关闭路径。 ClosePath 类继承PathElement类。
类的构造函数:
- ClosePath() :创建一个新的 Closepath 对象。
常用方法:
Method | Explanation |
---|---|
toString() | Returns the string representation of ClosePath Object. |
示例: Java程序创建路径并向其添加多个 LineTo 对象并使用 ClosePath 对象关闭路径并显示它:
- 在这个程序中,我们将创建一个名为path的 Path 对象。
- 创建四个具有指定 X 和 Y 坐标名称Lineto 、 Lineto1 、 Lineto2 、 Lineto3的 LineTo 对象。
- 最初路径没有关闭,因此我们将通过添加名为close的 ClosePath 对象来关闭路径。
- 然后创建一个名为moveto的 MoveTo 对象。
- 现在将 MoveTo 和 Lineto 对象添加到路径中。
- 将此路径添加到 Group 对象并将组对象添加到场景中,并将场景添加到舞台并调用show()函数以显示最终结果。
// Java program to create a path and add multiple
// LineTo objects to it and close the path using
// ClosePath object and display it
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
import javafx.scene.layout.*;
import javafx.scene.paint.*;
import javafx.scene.text.*;
import javafx.geometry.*;
import javafx.scene.layout.*;
import javafx.scene.shape.*;
import javafx.scene.paint.*;
import javafx.scene.*;
public class closepath extends Application {
// launch the application
public void start(Stage stage)
{
try {
// set title for the stage
stage.setTitle("closePath");
// create LineTo
LineTo Lineto = new LineTo(300, 200);
LineTo Lineto1 = new LineTo(200, 300);
LineTo Lineto2 = new LineTo(100, 200);
LineTo Lineto3 = new LineTo(150, 100);
// create a closePath object
ClosePath close = new ClosePath();
// create moveto
MoveTo moveto = new MoveTo(250, 100);
// create a Path
Path path = new Path(moveto, Lineto, Lineto1,
Lineto2, Lineto3, close);
// set stroke width
path.setStrokeWidth(2);
// create a Group
Group group = new Group(path);
// create a scene
Scene scene = new Scene(group, 400, 400);
// set the scene
stage.setScene(scene);
stage.show();
}
catch (Exception e) {
System.out.println(e.getMessage());
}
}
// Main Method
public static void main(String args[])
{
// launch the application
launch(args);
}
}
输出:
注意:以上程序可能无法在在线 IDE 中运行,请使用离线编译器。
参考: https://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ClosePath.html