Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
layerClusterBodies.forEach(function(layerClusterBody) {
let distanceJoint = planck.DistanceJoint( {
frequencyHz : 0.9, // TODO: Try to avoid overlapping in large datasets!
dampingRatio : 0.001 // TODO: ''
},
attractorBody,
attractorBody.getPosition(),
layerClusterBody,
layerClusterBody.getPosition()
);
distanceJoint.m_length = 0; // Set the length to zero as it's calculated as the distance between the anchors. TODO: PR on planck-js repo to fix bug.
world.createJoint(distanceJoint);
});