java - jmonkey 旋转和平移

标签 java rotation jmonkeyengine

我在 JME (JMonkey) 中遇到旋转然后平移两个框的问题。我搜索了论坛并发现了其他语言的一些类似问题,但我不明白答案,这可能是因为我不懂其他语言。我有两个带有 .lookat( [the other box] ) 的盒子,一个旋转盒子,然后是一个本地翻译。在我看来,本地翻译应该将盒子朝它面向的方向移动,但它似乎并没有沿着世界轴移动。值得注意的一件事;我对在 3d 中使用矩阵数学一无所知,我找到的一些答案使用矩阵数学来解决问题。我想了解这一点,以便将来避免出现此问题。我已尽可能减少我的代码,因此它没有任何不必要的部分。

package jme3test.helloworld;
import com.jme3.app.SimpleApplication;
import com.jme3.font.BitmapText;
import com.jme3.material.Material;
import com.jme3.math.Vector3f;
import com.jme3.scene.Geometry;
import com.jme3.scene.shape.Box;
import com.jme3.math.ColorRGBA;
import com.jme3.renderer.RenderManager;
import com.jme3.renderer.ViewPort;
import com.jme3.scene.Node;
import com.jme3.scene.Spatial;
import com.jme3.scene.control.AbstractControl;
import java.util.ResourceBundle.Control;


public class SSF2 extends SimpleApplication {
public Geometry blue = null;
public Geometry red = null;

public static void main(String[] args){
    final SSF2 app = new SSF2();
    app.start();
}

@Override
public void simpleInitApp() {
    // create a blue box at coordinates (1,-1,1)
    Box box1 = new Box( Vector3f.ZERO, 1f,2f,.5f);
    blue =  new Geometry("Box", box1);
    Material mat1 = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
    mat1.setColor("Color", ColorRGBA.Blue);
    blue.setMaterial(mat1);
    blue.move(-5,0,-3);

    // create a red box straight above the blue one at (1,3,1)
    Box box2 = new Box( Vector3f.ZERO, 1f,2f,.5f);
    red = new Geometry("Box", box2);
    Material mat2 = new Material(assetManager, "Common/MatDefs/Misc/Unshaded.j3md");
    mat2.setColor("Color", ColorRGBA.Red);
    red.setMaterial(mat2);
    red.move(5,0,-3);

    rootNode.attachChild(blue);
    rootNode.attachChild(red);

    blue.lookAt(red.getWorldTranslation(), new Vector3f(0,1,0) );
    red.lookAt(blue.getWorldTranslation(), new Vector3f(0,1,0) );
}

@Override
public void simpleUpdate(float tpf) {
    blue.setLocalTranslation(new Vector3f( (blue.getLocalTranslation().getX() + .02f), (blue.getLocalTranslation().getY())  , (blue.getLocalTranslation().getZ() )));
    red.setLocalTranslation(new Vector3f( (red.getLocalTranslation().getX() + .02f), (red.getLocalTranslation().getY())  , (red.getLocalTranslation().getZ() )));
}
}

最佳答案

看看这个:

@Override
public void simpleUpdate(float tpf) {
    red.rotate(0, 0.001f, 0);

    // For the red (moves in a circle)
    Quaternion rotation = red.getLocalRotation();
    Vector3f front = new Vector3f(0, 0, 0.01f);
    Vector3f heading = rotation.mult(front);
    red.move(heading);

    /// For the blue (follows the red)
    blue.lookAt(red.getWorldTranslation(), Vector3f.UNIT_Y);
    float velocity = 0.01f;
    Vector3f trajectory = red.getWorldTranslation().subtract(blue.getWorldTranslation());
    trajectory = trajectory.normalize();
    Vector3f offset = trajectory.mult(velocity);
    blue.move(offset);
    System.out.print(offset);

}

关于java - jmonkey 旋转和平移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13695369/

相关文章:

java - 在不知道 JSON 结构的情况下解析 Java 中的嵌套 JSON

text - 如何使用 Java2D 使旋转文本看起来不错

ios - 自动布局方向不起作用

java - JMonkey 中的库问题

java - 在 Java 中绘制密集的 3D 点云(或网格)

java - 在 SQL 查询中使用非提交值

java - jackson 枚举序列化和反序列化器

java - 是否可以在 Java Monkey Engine 中创建平坦地形?

Java不可变字符串混淆

c++ - "Looking At"具有四元数的对象