PathDemo.javaimport javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.*;
import javafx.stage.Stage;
public class PathDemo extends Application {
@Override // Override the start method in the Application class
public void start(Stage primaryStage) {
Pane pane = new Pane();
// Create a Path
Path path = new Path();
path.getElements().add(new MoveTo(50.0, 50.0));
path.getElements().add(new HLineTo(150.5));
path.getElements().add(new VLineTo(100.5));
path.getElements().add(new LineTo(200.5, 150.5));
ArcTo arcTo = new ArcTo(45, 45, 0, 250, 100.5,
false, true);
path.getElements().add(arcTo);
path.getElements().add(new QuadCurveTo(50, 50, 350, 100));
path.getElements().add(
new CubicCurveTo(250, 100, 350, 250, 450, 10));
path.getElements().add(new ClosePath());
pane.getChildren().add(path);
path.setFill(null);
Scene scene = new Scene(pane, 500, 200);
primaryStage.setTitle("PathDemo"); // Set the window title
primaryStage.setScene(scene); // Place the scene in the window
primaryStage.show(); // Display the window
}
// Launch the program from command-line
public static void main(String[] args) {
launch(args);
}
}
Maintained by John Loomis, updated Sun Mar 11 20:02:26 2018