This example use HTML5 Canvas to draw a simple graph.
The Node can be dragged to new positions on the canvas.
| import shutil | |
| from optparse import OptionParser | |
| import sys | |
| import functools | |
| import re | |
| import subprocess | |
| import os | |
| READELF = '/usr/bin/readelf' | |
| def get_dependencies(fname, skip_patterns): |
This example use HTML5 Canvas to draw a simple graph.
The Node can be dragged to new positions on the canvas.