Home | History | Annotate | Download | only in collision

Lines Matching refs:velocity

45     private Vector3f velocity = new Vector3f();
86 return velocity;
89 public void setVelocity(Vector3f velocity) {
90 this.velocity.set(velocity);
146 // A = velocity * velocity
147 // B = 2 * (velocity . (center - vertex));
203 // Vector3f sVelocity = velocity.mult(invDim);
205 velocity.mult(invDim, sVelocity);
275 contactNormal.set(velocity).multLocal(t0);
284 result.setDistance(minT * velocity.length());
344 contactNormal.set(velocity).multLocal(t0);
351 result.setDistance(minT * velocity.length());
360 temp1.set(velocity).subtractLocal(other.velocity);
377 result.setDistance(velocity.length() * t);
379 temp1.set(velocity).multLocal(t).addLocal(center);
380 temp2.set(other.velocity).multLocal(t).addLocal(other.center);