com.jme3.scene.Geometry.getLocalTransform()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(131)

本文整理了Java中com.jme3.scene.Geometry.getLocalTransform()方法的一些代码示例,展示了Geometry.getLocalTransform()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.getLocalTransform()方法的具体详情如下:
包路径:com.jme3.scene.Geometry
类名称:Geometry
方法名:getLocalTransform

Geometry.getLocalTransform介绍

暂无

代码示例

代码示例来源:origin: jMonkeyEngine/jmonkeyengine

if (attachParent == null || targetGeometry == null
    || targetGeometry.getParent() == attachParent
    && targetGeometry.getLocalTransform().isIdentity()) {

代码示例来源:origin: jMonkeyEngine/jmonkeyengine

if (attachParent == null || targetGeometry == null
    || targetGeometry.getParent() == attachParent
    && targetGeometry.getLocalTransform().isIdentity()) {

代码示例来源:origin: org.jmonkeyengine/jme3-core

/**
 * Update the local transform of the attachments node.
 */
private void updateAttachNode() {
  Node attachParent = attachNode.getParent();
  if (attachParent == null || targetGeometry == null
      || targetGeometry.getParent() == attachParent
      && targetGeometry.getLocalTransform().isIdentity()) {
    /*
     * The animated meshes are in the same coordinate system as the
     * attachments node: no further transforms are needed.
     */
    attachNode.setLocalTranslation(modelPos);
    attachNode.setLocalRotation(modelRot);
    attachNode.setLocalScale(modelScale);
  } else {
    Spatial loopSpatial = targetGeometry;
    Transform combined = new Transform(modelPos, modelRot, modelScale);
    /*
     * Climb the scene graph applying local transforms until the 
     * attachments node's parent is reached.
     */
    while (loopSpatial != attachParent && loopSpatial != null) {
      Transform localTransform = loopSpatial.getLocalTransform();
      combined.combineWithParent(localTransform);
      loopSpatial = loopSpatial.getParent();
    }
    attachNode.setLocalTransform(combined);
  }
}

代码示例来源:origin: info.projectkyoto/mms-engine

BatchedGeometry bg = new BatchedGeometry(this, geom);
bg.startIndex = globalVertIndex;
bg.setLocalTransform(geom.getLocalTransform());
children.add(bg);
batchedGeoms.add(bg);

代码示例来源:origin: info.projectkyoto/mms-engine

mesh.getVertexCount());
Transform t = convertPositions(fb, bbox, newBuf);
t.combineWithParent(geom.getLocalTransform());
geom.setLocalTransform(t);

相关文章