Understanding and Implementing a Force based graph layout algorithm
- by zcourts
I'm trying to implement a force base graph layout algorithm, based on http://en.wikipedia.org/wiki/Force-based_algorithms_(graph_drawing)
My first attempt didn't work so I looked at
http://blog.ivank.net/force-based-graph-drawing-in-javascript.html
and
https://github.com/dhotson/springy
I changed my implementation based on what I thought I…