這個類別表示路徑元素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中文網其他相關文章!