getCurrentLengthB method

double getCurrentLengthB()

Implementation

double getCurrentLengthB() {
  final p = Vector2.zero();
  p.setFrom(bodyB.worldPoint(localAnchorB));
  p.sub(_groundAnchorB);
  return p.length;
}