Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/toolbar/
H A DProgressAnimationSmooth.java41 float velocityChange = (targetProgress == 1.0f ? FINISHING_ACCELERATION : ACCELERATION) in updateProgress() local
43 mProgress += (mVelocity + 0.5f * velocityChange) * acceleratingDuration; in updateProgress()
44 mVelocity += velocityChange; in updateProgress()
48 float velocityChange = -DECELERATION * deceleratingDuration; in updateProgress() local
49 mProgress += (mVelocity + 0.5f * velocityChange) * deceleratingDuration; in updateProgress()
50 mVelocity += velocityChange; in updateProgress()
/dports/audio/rosegarden/rosegarden-21.06.1/src/commands/notation/
H A DInterpretCommand.cpp384 int velocityChange = stress * 4 - 4; in stressBeats() local
391 velocity += velocity * velocityChange / 100; in stressBeats()
458 int velocityChange = 0; in articulate() local
466 velocityChange += 30; in articulate()
473 velocityChange -= 5; in articulate()
476 velocityChange += 15; in articulate()
478 velocityChange += 35; in articulate()
481 velocityChange += 15; in articulate()
483 velocityChange += 5; in articulate()
485 velocityChange -= 5; in articulate()
[all …]
/dports/misc/dartsim/dart-6.11.1/dart/dynamics/
H A DGenericJoint.hpp404 void setVelocityChange(std::size_t index, double velocityChange) override;
556 void addVelocityChangeTo(Eigen::Vector6d& velocityChange) override;
606 const Eigen::Vector6d& velocityChange) override;
807 const Eigen::Matrix6d& artInertia, const Eigen::Vector6d& velocityChange);
810 const Eigen::Matrix6d& artInertia, const Eigen::Vector6d& velocityChange);
/dports/games/kolf/kolf-21.12.3/
H A Dball.cpp167 const double velocityChange = qAbs(initialVelocity - currentVelocity); in collisionDetect() local
169 if(currentVelocity < minSpeed && velocityChange < minSpeed && currentVelocity) in collisionDetect()
/dports/misc/dartsim/dart-6.11.1/dart/dynamics/detail/
H A DGenericJoint.hpp1319 size_t index, double velocityChange) in setVelocityChange() argument
1327 mVelocityChanges[index] = velocityChange; in setVelocityChange()
1718 Eigen::Vector6d& velocityChange) in addVelocityChangeTo() argument
1721 velocityChange.noalias() += getRelativeJacobianStatic() * mVelocityChanges; in addVelocityChangeTo()
1724 assert(!math::isNan(velocityChange)); in addVelocityChangeTo()
2270 const Eigen::Matrix6d& artInertia, const Eigen::Vector6d& velocityChange) in updateVelocityChange() argument
2278 updateVelocityChangeDynamic(artInertia, velocityChange); in updateVelocityChange()
2283 updateVelocityChangeKinematic(artInertia, velocityChange); in updateVelocityChange()
2294 const Eigen::Matrix6d& artInertia, const Eigen::Vector6d& velocityChange) in updateVelocityChangeDynamic() argument
2301 * math::AdInvT(this->getRelativeTransform(), velocityChange)); in updateVelocityChangeDynamic()
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/bullet/src/BulletMultiThreaded/GpuSoftBodySolvers/CPU/
H A DbtSoftBodySolver_CPU.cpp318 Vector3 velocityChange = m_perClothAcceleration[clothIndex]*solverdt; in applyForces() local
326 vertexVelocity += velocityChange; in applyForces()
/dports/misc/dartsim/dart-6.11.1/python/dartpy/dynamics/
H A DJoint.cpp746 double velocityChange) -> void { in Joint() argument
747 return self->setVelocityChange(index, velocityChange); in Joint()
H A DGenericJoint.cpp1152 double velocityChange) { \
1153 self->setVelocityChange(index, velocityChange); \