gpt4 book ai didi

JavaFX- CubeSystem3D 将立方体转换为球体

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:48:36 26 4
gpt4 key购买 nike

在 netbeans 中,samples 下有一个名为 CubeSystem3D 的选项。我想知道是否有一种方法可以将所有立方体转换为球体,以便我最终可以创建一个太阳系类型的东西。如果您无法从 netbeans 中检索到它,我可以发送实际代码,因为我无法放置这篇文章的代码,因为它说与文本相比会有太多代码。

最佳答案

在该 neabean 示例代码中使用下面的 Ellipse 类而不是 Cube 类。

public class Ellipse extends Group {

final Rotate rx = new Rotate(0, Rotate.X_AXIS);
final Rotate ry = new Rotate(0, Rotate.Y_AXIS);
final Rotate rz = new Rotate(0, Rotate.Z_AXIS);

public Ellipse(double size, Color color, double shade) {
PhongMaterial material = new PhongMaterial();
material.setDiffuseColor(color);
material.setSpecularColor(Color.BLACK);

getTransforms().addAll(rz, ry, rx);
Sphere s = new Sphere(size);
s.setMaterial(material);
getChildren().addAll(s);
}
}

You will get something like this,

enter image description here

关于JavaFX- CubeSystem3D 将立方体转换为球体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47563514/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com