Uses of Class
org.jbox2d.dynamics.contacts.Contact

Packages that use Contact
org.jbox2d.dynamics This package handles non-collision aspects of simulation. 
org.jbox2d.dynamics.contacts This package performs contact handling, and is essentially internal to JBox2d. 
 

Uses of Contact in org.jbox2d.dynamics
 

Fields in org.jbox2d.dynamics declared as Contact
 Contact[] Island.m_contacts
           
 

Methods in org.jbox2d.dynamics with parameters of type Contact
 void ContactManager.destroy(Contact c)
           
 

Uses of Contact in org.jbox2d.dynamics.contacts
 

Subclasses of Contact in org.jbox2d.dynamics.contacts
 class CircleContact
           
 class EdgeAndCircleContact
           
 class NullContact
           
 class PointAndCircleContact
           
 class PolyAndEdgeContact
           
 class PolyContact
           
 

Fields in org.jbox2d.dynamics.contacts declared as Contact
 Contact ContactEdge.contact
          The contact.
 Contact Contact.m_next
           
 Contact Contact.m_prev
           
 

Methods in org.jbox2d.dynamics.contacts that return Contact
 Contact PolyContact.clone()
           
 Contact PolyAndEdgeContact.clone()
           
 Contact NullContact.clone()
           
 Contact EdgeAndCircleContact.clone()
           
abstract  Contact Contact.clone()
          returns a clone of this contact.
 Contact PolyContact.create(Shape shape1, Shape shape2)
           
 Contact PolyAndEdgeContact.create(Shape s1, Shape s2)
           
 Contact PointAndCircleContact.create(Shape shape1, Shape shape2)
           
 Contact EdgeAndCircleContact.create(Shape s1, Shape s2)
           
 Contact ContactCreateFcn.create(Shape s1, Shape s2)
           
 Contact CircleContact.create(Shape shape1, Shape shape2)
           
static Contact Contact.createContact(Shape shape1, Shape shape2)
           
 Contact Contact.getNext()
           
 

Methods in org.jbox2d.dynamics.contacts with parameters of type Contact
static void Contact.destroy(Contact contact)
           
static void PolyAndEdgeContact.Destroy(Contact contact)
           
static void PointAndCircleContact.Destroy(Contact contact)
           
static void EdgeAndCircleContact.Destroy(Contact contact)
           
static void CircleContact.Destroy(Contact contact)
           
 

Constructors in org.jbox2d.dynamics.contacts with parameters of type Contact
ContactSolver(TimeStep step, Contact[] contacts, int contactCount)