HomeSort by relevance Sort by last modified time
    Searched refs:friction (Results 1 - 21 of 21) sorted by null

  /external/quake/quake/src/QW/client/
pmove.h 82 float friction; member in struct:__anon14203
pmove.c 321 Handles both ground friction and water friction
328 float friction; local
346 friction = movevars.friction;
348 // if the leading edge is over a dropoff, increase friction
358 friction *= 2;
364 if (waterlevel >= 2) // apply water friction
366 else if (onground != -1) // apply ground friction
369 drop += control*friction*frametime
778 float speed, drop, friction, control, newspeed, accel; local
    [all...]
cl_demo.c 452 MSG_WriteFloat(&buf, movevars.friction);
cl_parse.c 593 movevars.friction = MSG_ReadFloat();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 135 * The amount of friction applied to flings. The default value
138 * @param friction A scalar dimension-less value representing the coefficient of
139 * friction.
141 public final void setFriction(float friction) {
142 mDeceleration = computeDeceleration(friction);
145 private float computeDeceleration(float friction) {
149 * friction;
OverScroller.java 121 * The amount of friction applied to flings. The default value
124 * @param friction A scalar dimension-less value representing the coefficient of
125 * friction.
127 public final void setFriction(float friction) {
128 mScrollerX.setFriction(friction);
129 mScrollerY.setFriction(friction);
579 // Fling friction
647 void setFriction(float friction) {
648 mFlingFriction = friction;
    [all...]
  /frameworks/base/core/java/android/widget/
Scroller.java 190 * The amount of friction applied to flings. The default value
193 * @param friction A scalar dimension-less value representing the coefficient of
194 * friction.
196 public final void setFriction(float friction) {
197 mDeceleration = computeDeceleration(friction);
198 mFlingFriction = friction;
201 private float computeDeceleration(float friction) {
205 * friction;
OverScroller.java 119 * The amount of friction applied to flings. The default value
122 * @param friction A scalar dimension-less value representing the coefficient of
123 * friction.
125 public final void setFriction(float friction) {
126 mScrollerX.setFriction(friction);
127 mScrollerY.setFriction(friction);
577 // Fling friction
637 void setFriction(float friction) {
638 mFlingFriction = friction;
    [all...]
AbsListView.java     [all...]
  /external/quake/quake/src/WinQuake/
sv_user.cpp 127 float friction; local
136 // if the leading edge is over a dropoff, increase friction
145 friction = sv_friction.value*sv_edgefriction.value;
147 friction = sv_friction.value;
149 // apply friction
151 newspeed = speed - host_frametime*control*friction;
275 // water friction
sv_phys.cpp 1026 // extra friction based on view angle
1370 float friction; local
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 370 * Sets the friction of this physics object
371 * @param friction the friction of this physics object
373 public void setFriction(float friction) {
374 setFriction(objectId, friction);
377 private native void setFriction(long objectId, float friction);
709 capsule.write(getFriction(), "friction", 0.5f);
737 setFriction(capsule.readFloat("friction", 0.5f));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsRigidBody.java 362 * Sets the friction of this physics object
363 * @param friction the friction of this physics object
365 public void setFriction(float friction) {
366 constructionInfo.friction = friction;
367 rBody.setFriction(friction);
660 capsule.write(getFriction(), "friction", 0.5f);
688 setFriction(capsule.readFloat("friction", 0.5f));
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 324 long startTime, float friction) {
329 mFriction = 1f - (dragLayer.getResources().getDisplayMetrics().density * friction);
  /external/quake/quake/src/QW/server/
sv_phys.c 944 movevars.friction = sv_friction.value;
sv_user.c 106 MSG_WriteFloat(&host_client->netchan.message, movevars.friction);
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java     [all...]
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 

Completed in 812 milliseconds