Package com.googlecode.jumpnevolve.math

Examples of com.googlecode.jumpnevolve.math.Vector.mul()


        // Kraft hinzufügen, die in die gewünschte Bewegunsrichtung
        // zeigt
        // und entsprechend des Unterschieds zwischen Bewegung und
        // Wunsch
        // skaliert ist
        this.applyForce(direction.mul(mul * (move - vel) * 1.5f
            * this.getMass()));
      }

    }
    if (this instanceof Jumping) {
View Full Code Here


                  // Setzen der neuen Impulse, aber je mit
                  // halber Länge, da beide alten Impulse in
                  // den Rechnungen insgesamt doppelt
                  // vorkommen
                  this.setImpulse(thisImpulse.mul(0.5f));
                  other.setImpulse(otherImpulse.mul(0.5f));
                } else {
                  // Neuen Impuls für dieses Objekt setzen
                  this.setImpulse(this.onElasticCrash(other,
                      colResult.getIsOverlap()));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.