Searched defs:targetVelocity (Results 1 - 7 of 7) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
H A DInterpolator.java92 private boolean passedTarget(float oldVelocity, float newVelocity, float targetVelocity) { argument
95 if (oldVelocity < targetVelocity && newVelocity > targetVelocity) {
97 } else if (oldVelocity > targetVelocity && newVelocity < targetVelocity) {
H A DGameObject.java180 public final void setTargetVelocity(Vector2 targetVelocity) { argument
181 mTargetVelocity.set(targetVelocity);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/motors/
H A DRotationalLimitMotor.java80 public void setTargetVelocity(float targetVelocity) { argument
81 setTargetVelocity(motorId, targetVelocity);
84 private native void setTargetVelocity(long motorId, float targetVelocity); argument
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_joints_HingeJoint.cpp49 (JNIEnv * env, jobject object, jlong jointId, jboolean enable, jfloat targetVelocity, jfloat maxMotorImpulse) {
56 joint->enableAngularMotor(enable, targetVelocity, maxMotorImpulse);
48 Java_com_jme3_bullet_joints_HingeJoint_enableMotor(JNIEnv * env, jobject object, jlong jointId, jboolean enable, jfloat targetVelocity, jfloat maxMotorImpulse) argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
H A DHingeJoint.java76 public void enableMotor(boolean enable, float targetVelocity, float maxMotorImpulse) { argument
77 ((HingeConstraint) constraint).enableAngularMotor(enable, targetVelocity, maxMotorImpulse);
124 capsule.write(((HingeConstraint) constraint).getMotorTargetVelosity(), "targetVelocity", 0.0f);
143 float targetVelocity=capsule.readFloat("targetVelocity", 0.0f);
147 enableMotor(enableAngularMotor, targetVelocity, maxMotorImpulse);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/motors/
H A DRotationalLimitMotor.java67 return motor.targetVelocity;
70 public void setTargetVelocity(float targetVelocity) { argument
71 motor.targetVelocity = targetVelocity;
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DHingeJoint.java76 public void enableMotor(boolean enable, float targetVelocity, float maxMotorImpulse) { argument
77 enableMotor(objectId, enable, targetVelocity, maxMotorImpulse);
80 private native void enableMotor(long objectId, boolean enable, float targetVelocity, float maxMotorImpulse); argument
156 capsule.write(getMotorTargetVelocity(), "targetVelocity", 0.0f);
175 float targetVelocity = capsule.readFloat("targetVelocity", 0.0f);
179 enableMotor(enableAngularMotor, targetVelocity, maxMotorImpulse);

Completed in 146 milliseconds