本文整理了Java中com.jme3.scene.Mesh.extractVertexData()
方法的一些代码示例,展示了Mesh.extractVertexData()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Mesh.extractVertexData()
方法的具体详情如下:
包路径:com.jme3.scene.Mesh
类名称:Mesh
方法名:extractVertexData
[英]Extracts the vertex attributes from the given mesh into this mesh, by using this mesh's #getIndexBuffer()to index into the attributes of the other mesh. Note that this will also change this mesh's index buffer so that the references to the vertex data match the new indices.
[中]通过使用该网格的#getIndexBuffer()索引到其他网格的属性,将给定网格的顶点属性提取到该网格中。请注意,这还会更改该网格的索引缓冲区,以便顶点数据的引用与新索引匹配。
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
m.extractVertexData(sharedMesh);
代码示例来源:origin: jMonkeyEngine/jmonkeyengine
getMesh().extractVertexData(sharedMesh);
setUserData(UserData.JME_SHAREDMESH, null);
代码示例来源:origin: org.jmonkeyengine/jme3-plugins
m.extractVertexData(sharedMesh);
代码示例来源:origin: us.ihmc.thirdparty.jme/jme3-plugins
m.extractVertexData(sharedMesh);
代码示例来源:origin: info.projectkyoto/mms-engine
m.extractVertexData(sharedMesh);
代码示例来源:origin: info.projectkyoto/mms-engine
getMesh().extractVertexData(sharedMesh);
代码示例来源:origin: org.jmonkeyengine/jme3-core
getMesh().extractVertexData(sharedMesh);
setUserData(UserData.JME_SHAREDMESH, null);
内容来源于网络,如有侵权,请联系作者删除!