这个类表示路径元素arc。它可以帮助您从当前坐标到指定(新)坐标绘制圆弧。
创建直线路径元素 -
实例化 ArcTo 类。
使用 setter 方法为该类的属性设置值,或者将它们绕过构造函数。
实例化 Path 类。
使用 getElements() 获取上面创建的 Path 的可观察列表对象
使用add()方法将上面创建的ArcTo对象添加到可观察列表中。
最后,添加 Group 对象的路径。
import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.stage.Stage; import javafx.scene.shape.ArcTo; import javafx.scene.shape.LineTo; import javafx.scene.shape.MoveTo; import javafx.scene.shape.Path; import javafx.scene.shape.VLineTo; public class ArcToExample extends Application { public void start(Stage stage) { //Creating PathElement objects MoveTo moveTo = new MoveTo(490, 50); LineTo line1 = new LineTo(250, 250); //Instantiating the arcTo class ArcTo arcTo = new ArcTo(); arcTo.setX(300.0); arcTo.setY(50.0); arcTo.setRadiusX(50.0); arcTo.setRadiusY(50.0); //Creating the HLineTo object VLineTo vLine = new VLineTo(); vLine.setY(180); //Creating a Path Path path = new Path(); path.getElements().addAll(moveTo, line1, arcTo, vLine); //Setting other properties path.setStrokeWidth(8.0); path.setStroke(Color.DARKSLATEGREY); //Preparing the Stage object Group root = new Group(path); Scene scene = new Scene(root, 595, 300, Color.BEIGE); stage.setTitle("JavaFX Example"); stage.setScene(scene); stage.show(); } public static void main(String args[]){ launch(args); } }
以上是如何在JavaFX中创建路径元素弧形?的详细内容。更多信息请关注PHP中文网其他相关文章!