Examples of plane_classify()


Examples of com.bulletphysics.extras.gimpact.BoxCollision.AABB.plane_classify()

    AABB tribox = Stack.alloc(AABB.class);
    shape0.getAabb(orgtrans0, tribox.min, tribox.max);
    tribox.increment_margin(planeshape.getMargin());

    if (tribox.plane_classify(plane) != PlaneIntersectionType.COLLIDE_PLANE) {
      return;
    }
    shape0.lockChildShapes();

    float margin = shape0.getMargin() + planeshape.getMargin();
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.