We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A way to limit the maximum instantaneous force (speed) of nodes.
function forceLimit(limit) { let nodes; function force() { for (const node of nodes) { const speed = Math.hypot(node.vx, node.vy); if (speed > limit) { node.vx = node.vx / speed * limit; node.vy = node.vy / speed * limit; } } } force.limit = function(_) { return arguments.length ? (limit = +_, force) : limit; }; force.initialize = function (_) { nodes = _; }; return force; }
To use:
simulation.force("limit", forceLimit(8));
https://observablehq.com/d/1849551f209b16ed
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A way to limit the maximum instantaneous force (speed) of nodes.
To use:
https://observablehq.com/d/1849551f209b16ed
The text was updated successfully, but these errors were encountered: