OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:targetVelocity
(Results
1 - 5
of
5
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
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);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
HingeJoint.java
76
public void enableMotor(boolean enable, float
targetVelocity
, float maxMotorImpulse) {
77
enableMotor(objectId, enable,
targetVelocity
, maxMotorImpulse);
80
private native void enableMotor(long objectId, boolean enable, float
targetVelocity
, float maxMotorImpulse);
156
capsule.write(getMotorTargetVelocity(), "
targetVelocity
", 0.0f);
175
float
targetVelocity
= capsule.readFloat("
targetVelocity
", 0.0f);
179
enableMotor(enableAngularMotor,
targetVelocity
, maxMotorImpulse);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
HingeJoint.java
76
public void enableMotor(boolean enable, float
targetVelocity
, float maxMotorImpulse) {
77
((HingeConstraint) constraint).enableAngularMotor(enable,
targetVelocity
, maxMotorImpulse);
124
capsule.write(((HingeConstraint) constraint).getMotorTargetVelosity(), "
targetVelocity
", 0.0f);
143
float
targetVelocity
=capsule.readFloat("
targetVelocity
", 0.0f);
147
enableMotor(enableAngularMotor,
targetVelocity
, maxMotorImpulse);
/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
...]
/frameworks/support/v4/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
...]
Completed in 227 milliseconds