Chart visualization algorithm on a two-dimensional plane?

Some programs have a graphical interface that allows users to edit the "chart", for example Blender:

enter image description here

If I have a basic data structure (perhaps a directed graph?), How to draw a clean diagram on the screen without overlapping nodes / confusing users? Are there known algorithms?

+4
source share
1 answer

There is a free Graphviz tool , it has many built-in diagram layout algorithms. Since this is an open source project, I believe that you can find useful information there.

+1

All Articles