Box 3D JavaFX旋转

时间:2017-05-29 18:05:58

标签: javafx 3d rotation box javafx-3d

我有两个Box(Group),当我旋转时,图像显示如下:

展示盒 Display Boxes

旋转盒子 Rotate Boxes

旋转时,Box(JANELA_MEIO_BOX)失真:

public class Demo1 extends Application {

private PhongMaterial texturedMaterial = new PhongMaterial();
private Image texture = new Image("/T3D/mapfooter.JPG");
private final PhongMaterial redMaterial = new PhongMaterial();

public static void main(String[] args) {
    Application.launch(args);
}

@Override
public void start(final Stage stage) {

    redMaterial.setSpecularColor(Color.ORANGE);
    redMaterial.setDiffuseColor(Color.RED);

    texturedMaterial.setDiffuseMap(texture);
    javafx.scene.shape.Box JANELA_MEIO_BOX = new javafx.scene.shape.Box();

    /*  rotate  */
    JANELA_MEIO_BOX.setWidth(600.0); 
    JANELA_MEIO_BOX.setHeight(340.0);
    JANELA_MEIO_BOX.setDepth(100.0);
    JANELA_MEIO_BOX.setMaterial(texturedMaterial);

    Group JANELA_001 = new Group();

    stage.setTitle("Cube");

    final CameraView cameraView = new CameraView();


    final Scene scene = new Scene(cameraView, 1000, 800, true);
     scene.setFill(new RadialGradient(225, 0.85, 300, 300, 500, false,
            CycleMethod.NO_CYCLE, new Stop[]{new Stop(0f, Color.BLUE),
                new Stop(1f, Color.LIGHTBLUE)}));
    PerspectiveCamera camera = new PerspectiveCamera();
    scene.setCamera(camera);
    scene.setOnScroll((final ScrollEvent e) -> {
        camera.setTranslateZ(camera.getTranslateZ() + e.getDeltaY());
    });


    javafx.scene.shape.Box JAN_MAIN = new javafx.scene.shape.Box();
    JAN_MAIN.setMaterial(redMaterial);
    JAN_MAIN.setWidth(1000.0);
    JAN_MAIN.setHeight(600.0);
    JAN_MAIN.setDepth(100.0);

     JAN_MAIN.getTransforms().add(new Translate(1, 1, 1));


    JANELA_MEIO_BOX.getTransforms().add(new Translate(1, 1, 1));

    JANELA_001.getChildren().addAll(JAN_MAIN, JANELA_MEIO_BOX);

    cameraView.add(JANELA_001);

            /*  mouse events */


    cameraView.frameCam(stage, scene);
     MouseHandler mouseHandler = new MouseHandler(scene, cameraView);
    KeyHandler keyHandler = new KeyHandler(stage, scene, cameraView);
    /*  scene */

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

旋转时,Box(JANELA_MEIO_BOX)失真

1 个答案:

答案 0 :(得分:0)

你有两个盒子:1000x600x100立方体和600x340x100立方体。

当你把它们放在一个组中时,它们被放置在中心:较大的一个在X中从-500到500,在Y中从-300到300,在Z中从-50到50,同样如此对于较小的一个,也是从-50到50的Z.

当您使用相同的Z坐标渲染两个形状时,您将始终获得这些工件。

artifacts

一个快速的解决方案,如果你想看到两个形状,只是让较小的一个更深一点:

JANELA_MEIO_BOX.setDepth(100.1);

no artifacts

将Scene Antialiasing设置为Balanced:

也很方便
final Scene scene = new Scene(cameraView, 1000, 800, true, SceneAntialiasing.BALANCED);