Example usage for javafx.scene.shape Ellipse centerYProperty

List of usage examples for javafx.scene.shape Ellipse centerYProperty

Introduction

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

Prototype

public final DoubleProperty centerYProperty() 

Source Link

Usage

From source file:Main.java

@Override
public void start(Stage primaryStage) {
    primaryStage.setTitle("Shapes");
    Group root = new Group();
    Scene scene = new Scene(root, 300, 300, Color.WHITE);

    Ellipse bigCircle = new Ellipse(20, 20);
    bigCircle.setCenterX(20);//from  ww  w  .j a v a 2 s .  c  o m
    bigCircle.setCenterY(20);
    bigCircle.setRadiusX(10);
    bigCircle.setRadiusY(10);

    System.out.println(bigCircle.centerYProperty().doubleValue());

    root.getChildren().add(bigCircle);

    primaryStage.setScene(scene);
    primaryStage.show();
}