HomeSort by relevance Sort by last modified time
    Searched defs:velocityX (Results 1 - 25 of 32) sorted by null

1 2

  /external/replicaisland/src/com/replica/replicaisland/
SimplePhysicsComponent.java 44 float velocityX = parentObject.getVelocity().x + impulse.x;
56 if ((parentObject.touchingRightWall() && velocityX > 0.0f)
57 || (parentObject.touchingLeftWall() && velocityX < 0.0f)){
58 velocityX = -velocityX * mBounciness;
60 if (Utils.close(velocityX, 0.0f)) {
61 velocityX = 0.0f;
65 parentObject.getVelocity().set(velocityX, velocityY);
EnemyAnimationComponent.java 65 final float velocityX = parentObject.getVelocity().x;
80 } else if (Math.abs(velocityX) > 0.0f) {
90 if (!Utils.close(velocityX, 0.0f)) {
91 if (velocityX < 0.0f && targetVelocityX < 0.0f) {
93 } else if (velocityX > 0.0f && targetVelocityX > 0.0f) {
101 } else if (Math.abs(velocityX) == 0.0f) {
AnimationComponent.java 111 final float velocityX = parentObject.getVelocity().x;
217 if (Utils.close(velocityX, 0.0f, 30.0f)) {
219 } else if (Math.abs(velocityX) > 300.0f) {
240 if (Math.abs(velocityX) < 100.0f && velocityY > 10.0f) {
242 } else if (Math.abs(velocityX) > 300.0f) {
249 if (Utils.close(velocityX, 0.0f, 1.0f)) {
251 } else if (Math.abs(velocityX) > 300.0f) {
272 if (velocityX > 0.0f) {
274 } else if (velocityX < 0.0f) {
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/third_party/
GestureDetector.java 119 * @param velocityX The velocity of this fling measured in pixels per second
125 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);
183 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
618 final float velocityX = velocityTracker.getXVelocity(pointerId);
621 || (Math.abs(velocityX) > mMinimumFlingVelocity)){
622 handled = mListener.onFling(mCurrentDownEvent, ev, velocityX, velocityY);
  /frameworks/base/core/java/android/view/
GestureDetector.java 106 * @param velocityX The velocity of this fling measured in pixels per second
112 boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);
170 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
606 final float velocityX = velocityTracker.getXVelocity(pointerId);
609 || (Math.abs(velocityX) > mMinimumFlingVelocity)){
610 handled = mListener.onFling(mCurrentDownEvent, ev, velocityX, velocityY);
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 375 final float velocityX = VelocityTrackerCompat.getXVelocity(
379 || (Math.abs(velocityX) > mMinimumFlingVelocity)){
380 handled = mListener.onFling(mCurrentDownEvent, ev, velocityX, velocityY);
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 436 float velocityX;
441 float velocityX;
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java     [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java     [all...]
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 
  /external/robolectric/lib/main/
android-support-v4.jar 
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /sdk/apps/NotificationStudio/libs/
android-support-v4.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 375 milliseconds

1 2