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

  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
SpringForce.java 281 double currentVelocity;
290 currentVelocity = coeffA * mGammaMinus * Math.pow(Math.E, mGammaMinus * deltaT)
297 currentVelocity = (coeffA + coeffB * deltaT) * Math.pow(Math.E, -mNaturalFreq * deltaT)
307 currentVelocity = displacement * (-mNaturalFreq) * mDampingRatio
314 mMassState.mVelocity = (float) currentVelocity;
  /external/replicaisland/src/com/replica/replicaisland/
PhysicsComponent.java 60 final Vector2 currentVelocity = parentObject.getVelocity();
64 resolveCollision(currentVelocity, impulseVector, surfaceNormal, impulseVector);
75 Vector2 newVelocity = vectorPool.allocate(currentVelocity);
86 if (touchingFloor && currentVelocity.y <= 0.0f && Math.abs(newVelocity.x) > 0.0f
92 float frictionCoeffecient = Math.abs(currentVelocity.x) > 0.0f ?

Completed in 68 milliseconds