Example usage for javafx.scene.shape CubicCurve CubicCurve

List of usage examples for javafx.scene.shape CubicCurve CubicCurve

Introduction

In this page you can find the example usage for javafx.scene.shape CubicCurve CubicCurve.

Prototype

public CubicCurve() 

Source Link

Document

Creates an empty instance of CubicCurve.

Usage

From source file:Main.java

@Override
public void start(Stage stage) {
    stage.setTitle("ComboBoxSample");
    Scene scene = new Scene(new Group(), 450, 250);

    CubicCurve cubic = new CubicCurve();
    cubic.setStartX(0.0f);/*from  w ww.  ja  v  a2  s  .c  o  m*/
    cubic.setStartY(50.0f);
    cubic.setControlX1(25.0f);
    cubic.setControlY1(0.0f);
    cubic.setControlX2(75.0f);
    cubic.setControlY2(100.0f);
    cubic.setEndX(100.0f);
    cubic.setEndY(50.0f);

    Group root = (Group) scene.getRoot();
    root.getChildren().add(cubic);
    stage.setScene(scene);
    stage.show();
}