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

Packages that use Contact
org.jbox2d.dynamics   
org.jbox2d.dynamics.contacts   
 

Uses of Contact in org.jbox2d.dynamics
 

Fields in org.jbox2d.dynamics declared as Contact
 Contact World.m_contactList
          Do not access, won't be useful!
 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 NullContact
           
 class PolyContact
           
 

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

Methods in org.jbox2d.dynamics.contacts that return Contact
 Contact PolyContact.clone()
           
 Contact NullContact.clone()
           
abstract  Contact Contact.clone()
           
 Contact PolyContact.create(Shape shape1, Shape shape2)
           
 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 CircleContact.Destroy(Contact contact)
           
 

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