📜  JavaFX Cirlce

📅  最后修改于: 2020-10-14 01:12:59             🧑  作者: Mango

JavaFX Cirlce

圆形是椭圆的一种特殊类型,两个焦点都位于同一位置。其水平半径等于其垂直半径。 JavaFX允许我们通过实例化javafx.scene.shape.Circle类在任何应用程序的GUI上创建Circle。只需使用实例设置器方法设置类属性,然后将类对象添加到Group中。

物产

下表中给出了类属性以及setter方法及其说明。

Property Description Setter Methods
centerX X coordinate of the centre of circle setCenterX(Double value)
centerY Y coordinate of the centre of circle setCenterY(Double value)
radious Radius of the circle setRadius(Double value)

例:

package application;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;
public class Shape_Example extends Application{

@Override
public void start(Stage primaryStage) throws Exception {
// TODO Auto-generated method stub
primaryStage.setTitle("Circle Example");
Group group = new Group();
Circle circle = new Circle();
circle.setCenterX(200);
circle.setCenterY(200);
circle.setRadius(100);
circle.setFill(Color.RED);
group.getChildren().addAll(circle);
Scene scene = new Scene(group,400,500,Color.GRAY);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}

}