Home
last modified time | relevance | path

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

/frameworks/support/dynamic-animation/src/android/support/animation/
DSpringForce.java283 double coeffB = (mGammaMinus * lastDisplacement - lastVelocity) in updateValues() local
286 + coeffB * Math.pow(Math.E, mGammaPlus * deltaT); in updateValues()
288 + coeffB * mGammaPlus * Math.pow(Math.E, mGammaPlus * deltaT); in updateValues()
292 double coeffB = lastVelocity + mNaturalFreq * lastDisplacement; in updateValues() local
293 displacement = (coeffA + coeffB * deltaT) * Math.pow(Math.E, -mNaturalFreq * deltaT); in updateValues()
294 currentVelocity = (coeffA + coeffB * deltaT) * Math.pow(Math.E, -mNaturalFreq * deltaT) in updateValues()
295 * (-mNaturalFreq) + coeffB * Math.pow(Math.E, -mNaturalFreq * deltaT); in updateValues()