Dart Documentationbox2dJointEdge

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() { }

Properties

Joint joint #

The joint.

Joint joint

JointEdge next #

The next joint edge in the body's joint list.

JointEdge next

Body other #

Provides quick access to the other body attached.

Body other

JointEdge prev #

The previous joint edge in the body's joint list.

JointEdge prev