getWorldAnchorB method

void getWorldAnchorB(
  1. Vec3 result
)

Get the anchor point on body B, in world coordinates. @param result The vector to store the result in.

Implementation

void getWorldAnchorB(Vec3 result) {
  bodyB.pointToWorldFrame(localAnchorB, result);
}