Uses of Class
org.jbox2d.dynamics.contacts.Contact
-
Packages that use Contact Package Description org.jbox2d.callbacks org.jbox2d.dynamics org.jbox2d.dynamics.contacts org.jbox2d.pooling org.jbox2d.pooling.normal org.jbox2d.testbed.framework org.jbox2d.testbed.tests -
-
Uses of Contact in org.jbox2d.callbacks
Methods in org.jbox2d.callbacks with parameters of type Contact Modifier and Type Method Description void
ContactListener. beginContact(Contact contact)
Called when two fixtures begin to touch.void
ContactListener. endContact(Contact contact)
Called when two fixtures cease to touch.void
ContactListener. postSolve(Contact contact, ContactImpulse impulse)
This lets you inspect a contact after the solver is finished.void
ContactListener. preSolve(Contact contact, Manifold oldManifold)
This is called after a contact is updated. -
Uses of Contact in org.jbox2d.dynamics
Fields in org.jbox2d.dynamics declared as Contact Modifier and Type Field Description Contact
ContactManager. m_contactList
Contact[]
Island. m_contacts
Methods in org.jbox2d.dynamics that return Contact Modifier and Type Method Description Contact
World. getContactList()
Get the world contact list.Contact
World. popContact(Fixture fixtureA, int indexA, Fixture fixtureB, int indexB)
Methods in org.jbox2d.dynamics with parameters of type Contact Modifier and Type Method Description void
Island. add(Contact contact)
void
ContactManager. destroy(Contact c)
void
World. pushContact(Contact contact)
Method parameters in org.jbox2d.dynamics with type arguments of type Contact Modifier and Type Method Description private void
World. addType(IDynamicStack<Contact> creator, ShapeType type1, ShapeType type2)
-
Uses of Contact in org.jbox2d.dynamics.contacts
Subclasses of Contact in org.jbox2d.dynamics.contacts Modifier and Type Class Description class
ChainAndCircleContact
class
ChainAndPolygonContact
class
CircleContact
class
EdgeAndCircleContact
class
EdgeAndPolygonContact
class
PolygonAndCircleContact
class
PolygonContact
Fields in org.jbox2d.dynamics.contacts declared as Contact Modifier and Type Field Description Contact
ContactEdge. contact
the contactContact[]
ContactSolver.ContactSolverDef. contacts
Contact[]
ContactSolver. m_contacts
Contact
Contact. m_next
Contact
Contact. m_prev
Fields in org.jbox2d.dynamics.contacts with type parameters of type Contact Modifier and Type Field Description IDynamicStack<Contact>
ContactRegister. creator
Methods in org.jbox2d.dynamics.contacts that return Contact Modifier and Type Method Description Contact
ContactCreator. contactCreateFcn(IWorldPool argPool, Fixture fixtureA, Fixture fixtureB)
Contact
Contact. getNext()
Get the next contact in the world's contact list.Methods in org.jbox2d.dynamics.contacts with parameters of type Contact Modifier and Type Method Description void
ContactCreator. contactDestroyFcn(IWorldPool argPool, Contact contact)
-
Uses of Contact in org.jbox2d.pooling
Methods in org.jbox2d.pooling that return types with arguments of type Contact Modifier and Type Method Description IDynamicStack<Contact>
IWorldPool. getChainCircleContactStack()
IDynamicStack<Contact>
IWorldPool. getChainPolyContactStack()
IDynamicStack<Contact>
IWorldPool. getCircleContactStack()
IDynamicStack<Contact>
IWorldPool. getEdgeCircleContactStack()
IDynamicStack<Contact>
IWorldPool. getEdgePolyContactStack()
IDynamicStack<Contact>
IWorldPool. getPolyCircleContactStack()
IDynamicStack<Contact>
IWorldPool. getPolyContactStack()
-
Uses of Contact in org.jbox2d.pooling.normal
Fields in org.jbox2d.pooling.normal with type parameters of type Contact Modifier and Type Field Description private MutableStack<Contact>
DefaultWorldPool. ccstack
private MutableStack<Contact>
DefaultWorldPool. chcstack
private MutableStack<Contact>
DefaultWorldPool. chpstack
private MutableStack<Contact>
DefaultWorldPool. cpstack
private MutableStack<Contact>
DefaultWorldPool. ecstack
private MutableStack<Contact>
DefaultWorldPool. epstack
private MutableStack<Contact>
DefaultWorldPool. pcstack
Methods in org.jbox2d.pooling.normal that return types with arguments of type Contact Modifier and Type Method Description IDynamicStack<Contact>
DefaultWorldPool. getChainCircleContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getChainPolyContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getCircleContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getEdgeCircleContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getEdgePolyContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getPolyCircleContactStack()
IDynamicStack<Contact>
DefaultWorldPool. getPolyContactStack()
-
Uses of Contact in org.jbox2d.testbed.framework
Methods in org.jbox2d.testbed.framework with parameters of type Contact Modifier and Type Method Description void
TestbedTest. beginContact(Contact contact)
void
TestbedTest. endContact(Contact contact)
void
TestbedTest. postSolve(Contact contact, ContactImpulse impulse)
void
TestbedTest. preSolve(Contact contact, Manifold oldManifold)
-
Uses of Contact in org.jbox2d.testbed.tests
Methods in org.jbox2d.testbed.tests with parameters of type Contact Modifier and Type Method Description void
SensorTest. beginContact(Contact contact)
void
SensorTest. endContact(Contact contact)
void
Breakable. postSolve(Contact contact, ContactImpulse impulse)
void
ConveyorBelt. preSolve(Contact contact, Manifold oldManifold)
void
OneSidedTest. preSolve(Contact contact, Manifold oldManifold)
-