ContactEdge class
class ContactEdge { /** The other body attached to the edge. */ Body other; /** The contact. */ Contact contact; /** The previous contact edge in the body's contact list. */ ContactEdge prev; /** The next contact edge in the body's contact list. */ ContactEdge next; /** * Constructs a new ContactEdge with all fields set to null. */ ContactEdge() : other = null, contact = null, prev = null, next = null {} }
Constructors
new ContactEdge() #
Constructs a new ContactEdge with all fields set to null.
ContactEdge() : other = null, contact = null, prev = null, next = null {}
Properties
ContactEdge next #
The next contact edge in the body's contact list.
ContactEdge next
ContactEdge prev #
The previous contact edge in the body's contact list.
ContactEdge prev