OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetVelocity
(Results
1 - 15
of
15
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
Interpolator.java
92
private boolean passedTarget(float oldVelocity, float newVelocity, float
targetVelocity
) {
95
if (oldVelocity <
targetVelocity
&& newVelocity >
targetVelocity
) {
97
} else if (oldVelocity >
targetVelocity
&& newVelocity <
targetVelocity
) {
OrbitalMagnetComponent.java
84
final Vector2
targetVelocity
= target.getVelocity();
89
targetVelocity
.subtract(mVelocity);
91
mDelta.add(
targetVelocity
);
117
final float speed =
targetVelocity
.length();
118
targetVelocity
.add(mVelocity);
119
if (
targetVelocity
.length2() > (speed * speed)) {
120
targetVelocity
.normalize();
121
targetVelocity
.multiply(speed);
GameObject.java
180
public final void setTargetVelocity(Vector2
targetVelocity
) {
181
mTargetVelocity.set(
targetVelocity
);
/frameworks/support/core-ui/java/android/support/v4/widget/
AutoScrollHelper.java
550
final float
targetVelocity
= relativeVelocity * dstSize;
556
return constrain(value *
targetVelocity
, minimumVelocity, maximumVelocity);
558
return -constrain(-value *
targetVelocity
, minimumVelocity, maximumVelocity);
[
all
...]
/frameworks/base/core/java/com/android/internal/widget/
AutoScrollHelper.java
549
final float
targetVelocity
= relativeVelocity * dstSize;
555
return constrain(value *
targetVelocity
, minimumVelocity, maximumVelocity);
557
return -constrain(-value *
targetVelocity
, minimumVelocity, maximumVelocity);
[
all
...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btHingeConstraint.h
168
void enableAngularMotor(bool enableMotor,btScalar
targetVelocity
,btScalar maxMotorImpulse)
171
m_motorTargetVelocity =
targetVelocity
;
/external/libgdx/extensions/gdx-bullet/jni/swig-src/dynamics/com/badlogic/gdx/physics/bullet/dynamics/
btHingeConstraint.java
138
public void enableAngularMotor(boolean enableMotor, float
targetVelocity
, float maxMotorImpulse) {
139
DynamicsJNI.btHingeConstraint_enableAngularMotor(swigCPtr, this, enableMotor,
targetVelocity
, maxMotorImpulse);
/developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar
/developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar
/external/libgdx/backends/gdx-backend-android/libs/
support-v4-19.0.1.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.0/
support-v4-19.0.0.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.0.1/
support-v4-19.0.1.jar
/prebuilts/maven_repo/android/com/android/support/support-v4/19.1.0/
support-v4-19.1.0.jar
/prebuilts/sdk/current/support/v13/
android-support-v13.jar
/prebuilts/sdk/current/support/v4/
android-support-v4.jar
Completed in 485 milliseconds