OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:START_TENSION
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java
67
private static float
START_TENSION
= 0.4f; // Tension at start: (0.4 * total T, 1.0 * Distance)
68
private static float END_TENSION = 1.0f -
START_TENSION
;
84
tx = coef * ((1.0f - x) *
START_TENSION
+ x * END_TENSION) + x * x * x;
395
final double l = Math.log(
START_TENSION
* velocity / ALPHA);
OverScroller.java
593
private static final float
START_TENSION
= 0.5f;
595
private static final float P1 =
START_TENSION
* INFLEXION;
622
SPLINE_POSITION[i] = coef * ((1.0f - x) *
START_TENSION
+ x) + x * x * x;
629
dy = coef * ((1.0f - y) *
START_TENSION
+ y) + y * y * y;
[
all
...]
/frameworks/base/core/java/android/widget/
Scroller.java
99
private static final float
START_TENSION
= 0.5f;
101
private static final float P1 =
START_TENSION
* INFLEXION;
130
SPLINE_POSITION[i] = coef * ((1.0f - x) *
START_TENSION
+ x) + x * x * x;
137
dy = coef * ((1.0f - y) *
START_TENSION
+ y) + y * y * y;
OverScroller.java
591
private static final float
START_TENSION
= 0.5f;
593
private static final float P1 =
START_TENSION
* INFLEXION;
620
SPLINE_POSITION[i] = coef * ((1.0f - x) *
START_TENSION
+ x) + x * x * x;
627
dy = coef * ((1.0f - y) *
START_TENSION
+ y) + y * y * y;
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java
68
private static final float
START_TENSION
= 0.5f;
70
private static final float P1 =
START_TENSION
* INFLEXION;
99
SPLINE_POSITION[i] = coef * ((1.0f - x) *
START_TENSION
+ x) + x * x * x;
106
dy = coef * ((1.0f - y) *
START_TENSION
+ y) + y * y * y;
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java
595
private static final float
START_TENSION
= 0.5f;
597
private static final float P1 =
START_TENSION
* INFLEXION;
624
SPLINE_POSITION[i] = coef * ((1.0f - x) *
START_TENSION
+ x) + x * x * x;
631
dy = coef * ((1.0f - y) *
START_TENSION
+ y) + y * y * y;
[
all
...]
Completed in 432 milliseconds