C# Class FarseerPhysics.Dynamics.Contacts.ContactEdge

A contact edge is used to connect bodies and contacts together in a contact graph where each body is a node and each contact is an edge. A contact edge belongs to a doubly linked list maintained in each attached body. Each contact has two contact nodes, one for each attached body.
Datei anzeigen Open project: prime31/Nez Class Usage Examples

Public Properties

Property Type Description
contact Contact
next ContactEdge
other Body
prev ContactEdge

Property Details

contact public_oe property

The contact
public Contact,FarseerPhysics.Dynamics.Contacts contact
return Contact

next public_oe property

The next contact edge in the body's contact list
public ContactEdge,FarseerPhysics.Dynamics.Contacts next
return ContactEdge

other public_oe property

Provides quick access to the other body attached.
public Body other
return Body

prev public_oe property

The previous contact edge in the body's contact list
public ContactEdge,FarseerPhysics.Dynamics.Contacts prev
return ContactEdge