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
Ejemplo n.º 1
0
 protected TerrainPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
Ejemplo n.º 2
0
 public BoxSpherePairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
Ejemplo n.º 3
0
 public ConvexFCOPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }
Ejemplo n.º 4
0
		public VoxelBlobConvexPairHandler()
		{
			constraint = new NonConvexContactManifoldConstraint( this );
		}
Ejemplo n.º 5
0
 protected StaticMeshPairHandler()
 {
     contactConstraint = new NonConvexContactManifoldConstraint(this);
 }