JointEdge class
class JointEdge { /** * Constructs a new joint edge with everything set to null. */ JointEdge() { } /** * Provides quick access to the other body attached. */ Body other; /** * The joint. */ Joint joint; /** * The previous joint edge in the body's joint list. */ JointEdge prev; /** * The next joint edge in the body's joint list. */ JointEdge next; }
Constructors
new JointEdge() #
Constructs a new joint edge with everything set to null.
JointEdge() { }