OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:targetVelocity
(Results
1 - 3
of
3
) 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);
Completed in 6814 milliseconds