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

  /frameworks/base/include/androidfw/
VelocityTracker.h 216 float ypos, yvel, yaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 750 state.yvel = 0;
767 float yvel = (ypos - state.ypos) / dt; local
770 state.yvel = yvel;
776 state.yvel += (yvel - state.yvel) * alpha;
779 float yaccel = (yvel - state.yvel) / dt;
789 state.yvel += (state.yaccel * dt) * alpha
    [all...]

Completed in 100 milliseconds