Home
last modified time | relevance | path

Searched refs:weightThreshold (Results 1 – 2 of 2) sorted by relevance

/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
DKinematicRagdollControl.java105 protected float weightThreshold = -1.0f; field in KinematicRagdollControl
144 public KinematicRagdollControl(float weightThreshold) { in KinematicRagdollControl() argument
145 this.weightThreshold = weightThreshold; in KinematicRagdollControl()
148 public KinematicRagdollControl(RagdollPreset preset, float weightThreshold) { in KinematicRagdollControl() argument
150 this.weightThreshold = weightThreshold; in KinematicRagdollControl()
356 if (weightThreshold == -1.0f) { in scanSpatial()
387 …ces(link.bone, skeleton, boneList), initScale, link.bone.getModelSpacePosition(), weightThreshold); in boneRecursion()
790 return weightThreshold; in getWeightThreshold()
793 public void setWeightThreshold(float weightThreshold) { in setWeightThreshold() argument
794 this.weightThreshold = weightThreshold; in setWeightThreshold()
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/
DRagdollUtils.java156 …ist<Integer> boneIndices, Vector3f initialScale, Vector3f initialPosition, float weightThreshold) { in makeShapeFromVerticeWeights() argument
162 … points.addAll(getPoints(g.getMesh(), index, initialScale, initialPosition, weightThreshold)); in makeShapeFromVerticeWeights() local
170 … points.addAll(getPoints(g.getMesh(), index, initialScale, initialPosition, weightThreshold)); in makeShapeFromVerticeWeights() local
193 …etPoints(Mesh mesh, int boneIndex, Vector3f initialScale, Vector3f offset, float weightThreshold) { in getPoints() argument
212 if (boneIndices.get(k) == boneIndex && boneWeight.get(k) >= weightThreshold) { in getPoints()