Home
last modified time | relevance | path

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

/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
DSpringForce.java281 double currentVelocity; in updateValues() local
290 currentVelocity = coeffA * mGammaMinus * Math.pow(Math.E, mGammaMinus * deltaT) in updateValues()
297 currentVelocity = (coeffA + coeffB * deltaT) * Math.pow(Math.E, -mNaturalFreq * deltaT) in updateValues()
307 currentVelocity = displacement * (-mNaturalFreq) * mDampingRatio in updateValues()
314 mMassState.mVelocity = (float) currentVelocity; in updateValues()