HomeSort by relevance Sort by last modified time
    Searched refs:BoneIndex (Results 1 - 7 of 7) sorted by null

  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestCustomAnim.java 84 VertexBuffer indicesBuf = new VertexBuffer(Type.BoneIndex);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
RagdollUtils.java 61 ByteBuffer boneIndices = (ByteBuffer) mesh.getBuffer(Type.BoneIndex).getData();
188 * @param boneIndex
193 private static List<Float> getPoints(Mesh mesh, int boneIndex, Vector3f initialScale, Vector3f offset, float weightThreshold) {
196 ByteBuffer boneIndices = (ByteBuffer) mesh.getBuffer(Type.BoneIndex).getData();
212 if (boneIndices.get(k) == boneIndex && boneWeight.get(k) >= weightThreshold) {
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
SkeletonControl.java 159 VertexBuffer bi = mesh.getBuffer(Type.BoneIndex);
316 ByteBuffer ib = (ByteBuffer) mesh.getBuffer(Type.BoneIndex).getData();
425 ByteBuffer ib = (ByteBuffer) mesh.getBuffer(Type.BoneIndex).getData();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ArmatureModifier.java 293 Integer boneIndex = groupToBoneIndexMap.get(((Number) deformWeight.getFieldValue("def_nr")).intValue());
297 LOGGER.log(Level.WARNING, "{0} has more than 4 weight on bone index {1}", new Object[] { meshStructure.getName(), boneIndex });
302 if (boneIndex != null) {
306 boneIndex = Integer.valueOf(0);
311 indicesData.put(index * MAXIMUM_WEIGHTS_PER_VERTEX + weightIndex, boneIndex.byteValue());
344 VertexBuffer verticesWeightsIndices = new VertexBuffer(Type.BoneIndex);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Mesh.java 308 if (pos == null || getBuffer(Type.BoneIndex) == null) {
358 VertexBuffer indices = getBuffer(Type.BoneIndex);
    [all...]
VertexBuffer.java 151 BoneIndex,
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshLoader.java 313 mesh.clearBuffer(Type.BoneIndex);
382 VertexBuffer indices = new VertexBuffer(Type.BoneIndex);
562 private void pushBoneAssign(String vertIndex, String boneIndex, String weight) throws SAXException {
565 byte bone = (byte) parseInt(boneIndex);
614 attribs.getValue("boneindex"),

Completed in 317 milliseconds