Uses of Class
com.bulletphysics.collision.shapes.ConvexShape

Packages that use ConvexShape
com.bulletphysics.collision.narrowphase Narrow-phase collision. 
com.bulletphysics.collision.shapes Collision shapes. 
 

Uses of ConvexShape in com.bulletphysics.collision.narrowphase
 

Fields in com.bulletphysics.collision.narrowphase declared as ConvexShape
 ConvexShape TriangleConvexcastCallback.convexShape
           
 ConvexShape[] GjkEpaSolver.GJK.shapes
           
 

Methods in com.bulletphysics.collision.narrowphase with parameters of type ConvexShape
 boolean ConvexPenetrationDepthSolver.calcPenDepth(SimplexSolverInterface simplexSolver, ConvexShape convexA, ConvexShape convexB, Transform transA, Transform transB, javax.vecmath.Vector3f v, javax.vecmath.Vector3f pa, javax.vecmath.Vector3f pb, IDebugDraw debugDraw)
           
 boolean GjkEpaPenetrationDepthSolver.calcPenDepth(SimplexSolverInterface simplexSolver, ConvexShape pConvexA, ConvexShape pConvexB, Transform transformA, Transform transformB, javax.vecmath.Vector3f v, javax.vecmath.Vector3f wWitnessOnA, javax.vecmath.Vector3f wWitnessOnB, IDebugDraw debugDraw)
           
static boolean GjkEpaSolver.collide(ConvexShape shape0, Transform wtrs0, ConvexShape shape1, Transform wtrs1, float radialmargin, GjkEpaSolver.Results results)
           
 void GjkEpaSolver.GJK.init(javax.vecmath.Matrix3f wrot0, javax.vecmath.Vector3f pos0, ConvexShape shape0, javax.vecmath.Matrix3f wrot1, javax.vecmath.Vector3f pos1, ConvexShape shape1, float pmargin)
           
 void GjkPairDetector.setMinkowskiA(ConvexShape minkA)
           
 void GjkPairDetector.setMinkowskiB(ConvexShape minkB)
           
 

Constructors in com.bulletphysics.collision.narrowphase with parameters of type ConvexShape
GjkConvexCast(ConvexShape convexA, ConvexShape convexB, SimplexSolverInterface simplexSolver)
           
GjkEpaSolver.GJK(javax.vecmath.Matrix3f wrot0, javax.vecmath.Vector3f pos0, ConvexShape shape0, javax.vecmath.Matrix3f wrot1, javax.vecmath.Vector3f pos1, ConvexShape shape1)
           
GjkEpaSolver.GJK(javax.vecmath.Matrix3f wrot0, javax.vecmath.Vector3f pos0, ConvexShape shape0, javax.vecmath.Matrix3f wrot1, javax.vecmath.Vector3f pos1, ConvexShape shape1, float pmargin)
           
GjkPairDetector(ConvexShape objectA, ConvexShape objectB, SimplexSolverInterface simplexSolver, ConvexPenetrationDepthSolver penetrationDepthSolver)
           
SubsimplexConvexCast(ConvexShape shapeA, ConvexShape shapeB, SimplexSolverInterface simplexSolver)
           
TriangleConvexcastCallback(ConvexShape convexShape, Transform convexShapeFrom, Transform convexShapeTo, Transform triangleToWorld, float triangleCollisionMargin)
           
 

Uses of ConvexShape in com.bulletphysics.collision.shapes
 

Subclasses of ConvexShape in com.bulletphysics.collision.shapes
 class BoxShape
          BoxShape implements both a feature based (vertex/edge/plane) and implicit (getSupportingVertex) Box.
 class CapsuleShape
          CapsuleShape represents a capsule around the Y axis.
 class CapsuleShapeX
          CapsuleShapeX represents a capsule around the Z axis.
 class CapsuleShapeZ
          CapsuleShapeZ represents a capsule around the Z axis.
 class ConvexHullShape
          ConvexHullShape implements an implicit (getSupportingVertex) Convex Hull of a Point Cloud (vertices).
 class ConvexInternalShape
           
 class CylinderShape
          Implements cylinder shape interface.
 class CylinderShapeX
           
 class CylinderShapeZ
           
 class MinkowskiSumShape
          MinkowskiSumShape represents implicit (getSupportingVertex) based minkowski sum of two convex implicit shapes.
 class PolyhedralConvexShape
          PolyhedralConvexShape is an interface class for feature based (vertex/edge/face) convex shapes.
 class SphereShape
          SphereShape implements an implicit (getSupportingVertex) Sphere.
 class TriangleShape
           
 

Fields in com.bulletphysics.collision.shapes declared as ConvexShape
protected  ConvexShape ShapeHull.shape
           
 

Constructors in com.bulletphysics.collision.shapes with parameters of type ConvexShape
MinkowskiSumShape(ConvexShape shapeA, ConvexShape shapeB)
           
ShapeHull(ConvexShape shape)