Uses of Class
org.jbox2d.dynamics.joints.DistanceJoint

Packages that use DistanceJoint
org.jbox2d.p5 This package makes up the BoxWrap2d library for Processing, a simple layer on top of JBox2d to ease construction, simulation, and display of physical worlds when using Processing. 
 

Uses of DistanceJoint in org.jbox2d.p5
 

Methods in org.jbox2d.p5 that return DistanceJoint
static DistanceJoint JointUtils.createDistanceJoint(Body a, Body b)
          Creates and returns a simple distance joint between two bodies, based on their world body positions (NOT their centers of mass).
 DistanceJoint Physics.createDistanceJoint(Body a, Body b, float xa, float ya, float xb, float yb)
          Create a distance (stick) joint between two bodies that holds the specified points at a constant distance.
static DistanceJoint JointUtils.createDistanceJoint(World w, Vec2 pA, Vec2 pB)
          Creates a distance joint between bodies that touch the given points, anchored at those points.