Searched defs:restitution (Results 1 - 4 of 4) sorted by relevance

/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/motors/
H A DTranslationalLimitMotor.java124 public void setRestitution(float restitution) { argument
125 setRestitution(motorId, restitution);
128 private native void setRestitution(long motorId, float restitution); argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/motors/
H A DTranslationalLimitMotor.java94 return motor.restitution;
97 public void setRestitution(float restitution) { argument
98 motor.restitution = restitution;
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
H A DPhysicsRigidBody.java422 * The "bouncyness" of the PhysicsRigidBody, best performance if restitution=0
423 * @param restitution
425 public void setRestitution(float restitution) { argument
426 setRestitution(objectId, restitution);
710 capsule.write(getRestitution(), "restitution", 0);
740 setRestitution(capsule.readFloat("restitution", 0));
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
H A DPhysicsRigidBody.java399 * The "bouncyness" of the PhysicsRigidBody, best performance if restitution=0
400 * @param restitution
402 public void setRestitution(float restitution) { argument
403 constructionInfo.restitution = restitution;
404 rBody.setRestitution(restitution);
661 capsule.write(getRestitution(), "restitution", 0);
691 setRestitution(capsule.readFloat("restitution", 0));

Completed in 106 milliseconds