Package com.bulletphysics

Examples of com.bulletphysics.ContactDestroyedCallback


 
  // btSeed2 is used for re-arranging the constraint rows. improves convergence/quality of friction
  protected long btSeed2 = 0L;

  public SequentialImpulseConstraintSolver() {
    BulletGlobals.setContactDestroyedCallback(new ContactDestroyedCallback() {
      public boolean contactDestroyed(Object userPersistentData) {
        assert (userPersistentData != null);
        ConstraintPersistentData cpd = (ConstraintPersistentData) userPersistentData;
        //btAlignedFree(cpd);
        totalCpd--;
View Full Code Here

TOP

Related Classes of com.bulletphysics.ContactDestroyedCallback

Copyright © 2018 www.massapicom. 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.