Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DPointerLocationView.java108 private final float ESTIMATE_INTERVAL = 0.02f; field in PointerLocationView
323 float lx = ps.mEstimator.estimateX(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL); in onDraw()
324 float ly = ps.mEstimator.estimateY(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL); in onDraw()
326 float x = ps.mEstimator.estimateX(i * ESTIMATE_INTERVAL); in onDraw()
327 float y = ps.mEstimator.estimateY(i * ESTIMATE_INTERVAL); in onDraw()
342 lx = ps.mAltEstimator.estimateX(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL); in onDraw()
343 ly = ps.mAltEstimator.estimateY(-ESTIMATE_PAST_POINTS * ESTIMATE_INTERVAL); in onDraw()
345 float x = ps.mAltEstimator.estimateX(i * ESTIMATE_INTERVAL); in onDraw()
346 float y = ps.mAltEstimator.estimateY(i * ESTIMATE_INTERVAL); in onDraw()