Collision constraint for non-convex manifolds. These manifolds are usually used in cases where the contacts are coming from multiple objects or from non-convex objects. The normals will likely face more than one direction.
Inheritance: ContactManifoldConstraint
 protected TerrainPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
 public BoxSpherePairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
Example #3
0
 public ConvexFCOPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
Example #4
0
		public VoxelBlobConvexPairHandler()
		{
			constraint = new NonConvexContactManifoldConstraint( this );
		}
 protected StaticMeshPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }