From: <ror...@us...> - 2007-07-16 05:59:09
|
Revision: 104 http://roreditor.svn.sourceforge.net/roreditor/?rev=104&view=rev Author: rorthomas Date: 2007-07-15 22:59:08 -0700 (Sun, 15 Jul 2007) Log Message: ----------- * minor improvements in depchecker.py Modified Paths: -------------- trunk/lib/ror/depchecker.py Modified: trunk/lib/ror/depchecker.py =================================================================== --- trunk/lib/ror/depchecker.py 2007-07-16 05:35:01 UTC (rev 103) +++ trunk/lib/ror/depchecker.py 2007-07-16 05:59:08 UTC (rev 104) @@ -156,7 +156,7 @@ graph.set_type('digraph') graph.simplify = True #graph.set("resolution", "320") - #graph.set("overlap", "0") + #graph.set("overlap", "scale") #graph.set("shape", "box") for n in graph.get_node_list(): @@ -182,12 +182,16 @@ + #graph.set("ranksep", "2") + #graph.set("splines", True) program = "dot" # dot or twopi + # this takes very long: #if len(self.filedeps) > 100: # program = "twopi" + # graph.set("overlap", "scale") graph.write(fn, prog = program, format='png') - print "graph successfull written to dependencies.png" + print "graph successfull written to " + fn def generateCrossDep(self): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |