public class Circle
  Comment     Returned-by     Constructor-argument     Method-argument     Field-type     Type-bound     Links  

The Circle class creates a new circle with the specified radius and center location measured in pixels Example usage. The following code creates a circle with radius 50px centered at (100,100)px.

import javafx.scene.shape.*;

Circle circle = new Circle();
circle.setCenterX(100.0f);
circle.setCenterY(100.0f);
circle.setRadius(50.0f);
}

extends Shape

Since:  JavaFX 2.0