OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentStepTime
(Results
1 - 2
of
2
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java
347
long
currentStepTime
= SystemClock.uptimeMillis();
348
step(
currentStepTime
);
352
handler.postAtTime(mAnimationRunnable,
currentStepTime
+ ANIMATION_TIME_STEP);
357
private void step(long
currentStepTime
) {
358
float tau = (
currentStepTime
- mLastStepTime) * 0.001f;
359
mLastStepTime =
currentStepTime
;
/development/samples/ControllerSample/src/com/example/controllersample/
GameView.java
316
long
currentStepTime
= SystemClock.uptimeMillis();
317
step(
currentStepTime
);
321
private void step(long
currentStepTime
) {
322
float tau = (
currentStepTime
- mLastStepTime) * 0.001f;
323
mLastStepTime =
currentStepTime
;
[
all
...]
Completed in 440 milliseconds