Skip to content

Instantly share code, notes, and snippets.

@keithwhor
Created July 21, 2015 20:48
Show Gist options
  • Save keithwhor/4378f0f5d41c9421cccd to your computer and use it in GitHub Desktop.
Save keithwhor/4378f0f5d41c9421cccd to your computer and use it in GitHub Desktop.
Set Graph weights
views.forEach(function(view) {
view.setDistance(4);
});
favorites.forEach(function(favorite) {
favorite.setDistance(2);
});
requests.forEach(function(request) {
request.setDistance(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment