解释JavaFX中3D形状的绘制模式面属性
例
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.PerspectiveCamera;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
import javafx.scene.shape.DrawMode;
import javafx.scene.shape.Sphere;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
public class DrawModeProperty extends Application {
public void start(Stage stage) {
//绘制球体
Sphere sphere1 = new Sphere(100);
sphere1.setTranslateX(80.0);
sphere1.setTranslateY(180.0);
sphere1.setTranslateZ(150.0);
//Setting the property "draw mode"
sphere1.setDrawMode(DrawMode.LINE);
//绘制球体
Sphere sphere2 = new Sphere(100);
sphere2.setTranslateX(380.0);
sphere2.setTranslateY(180.0);
sphere2.setTranslateZ(150.0);
//Setting the property "draw mode"
sphere2.setDrawMode(DrawMode.FILL);
//设置透视相机
PerspectiveCamera cam = new PerspectiveCamera();
cam.setTranslateX(-50);
cam.setTranslateY(50);
cam.setTranslateZ(0);
Font font = Font.font("verdana", FontWeight.BOLD, FontPosture.REGULAR, 15);
Text label1 = new Text("Draw Mode: LINE");
label1.setFont(font);
label1.setX(40);
label1.setY(300);
Text label2 = new Text("Draw Mode: FILL");
label2.setFont(font);
label2.setX(280);
label2.setY(300);
//设置场景
Group root = new Group(sphere1, sphere2, label1, label2);
Scene scene = new Scene(root, 595, 300, Color.BEIGE);
scene.setCamera(cam);
stage.setTitle("3D Shape Property: Draw Mode");
stage.setScene(scene);
stage.show();
}
public static void main(String args[]){
launch(args);
}
}输出结果
热门推荐
10 妹妹生日祝福语简短唯美
11 中考祝福语简短卡片大全
12 很暧昧的简短祝福语
13 中秋祝福语送朋友简短
14 参加婚礼祝福语大全简短
15 祖国生日祝福语简短英文
16 带清的简短祝福语
17 儿女的生日祝福语简短
18 婚庆花篮祝福语简短大气