有人可以为我提供一个如何绘制的示例,例如 JmonkeyEngine 中 x、y、z 范围为 0..100 的 10000 个随机 3D 点。有人建议我使用 Jmonkey 而不是 java3D。我对两者都很陌生。谢谢
问问题
1069 次
1 回答
1
这是在 JMonkey2 中制作的。以下是 0 到 100 中的 10000 个球体。这最终形成了一个几乎完整的盒子。使用 WASD 控制摄像机。
package wall;
import java.util.Random;
import java.util.concurrent.Callable;
import com.jme.math.Vector3f;
import com.jme.scene.shape.Sphere;
import com.jme.util.GameTaskQueueManager;
import com.jmex.editors.swing.settings.GameSettingsPanel;
import com.jmex.game.StandardGame;
import com.jmex.game.state.DebugGameState;
import com.jmex.game.state.GameStateManager;
public final class SphereExample {
private static final int MAX = 100;
private static final int TOTAL = 10000;
public static void setupGame() {
final DebugGameState state = new DebugGameState() {
@Override
public void update(final float timeStep) {
// Update the game state
super.update(timeStep);
}
};
final Random random = new Random();
for (int i = 0; i < TOTAL; i++) {
final Sphere sphere = new Sphere("sphere", 5, 5, 1);
sphere.setLocalTranslation(random.nextInt(MAX),
random.nextInt(MAX), random.nextInt(MAX));
sphere.updateRenderState();
state.getRootNode().attachChild(sphere);
}
GameStateManager.getInstance().attachChild(state);
state.setActive(true);
}
public static void main(final String[] args) throws Exception {
final StandardGame game = new StandardGame("Points");
if (GameSettingsPanel.prompt(game.getSettings())) {
game.start();
GameTaskQueueManager.getManager().update(
new Callable<Void>() {
@Override
public Void call() throws Exception {
setupGame();
game.getCamera() // moves the camera to the middle
// of the spheres
.setFrame(
new Vector3f(50.0f,
50.0f, 50.0f),
new Vector3f(-1.0f, 0.0f,
0.0f),
new Vector3f(0.0f, 1.0f,
0.0f),
new Vector3f(0.0f, 0.0f,
-1.0f));
game.getCamera().update();
game.getCamera().apply();
return null;
}
});
}
}
}
于 2012-05-17T10:38:21.543 回答