Home | History | Annotate | Download | only in utils

Lines Matching refs:DOT

38 # Find the "dot" program
41 chomp($DotPath = `which dot`);
42 die "Can't find 'dot'" if (! -x "$DotPath");
293 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=0 ];\n" };
295 if (!$FLAT) { print DOT "$lib_ns -> $key [ weight=10];\n" };
315 open DOT, "| $DotPath -Tgif > libdeps.gif";
317 print DOT "digraph LibDeps {\n";
318 print DOT " size=\"40,15\"; \n";
319 print DOT " ratio=\"1.33333\"; \n";
320 print DOT " margin=\"0.25\"; \n";
321 print DOT " rankdir=\"LR\"; \n";
322 print DOT " mclimit=\"50.0\"; \n";
323 print DOT " ordering=\"out\"; \n";
324 print DOT " center=\"1\";\n";
325 print DOT "node [shape=\"box\",\n";
326 print DOT " color=\"#000088\",\n";
327 print DOT " fillcolor=\"#FFFACD\",\n";
328 print DOT " fontcolor=\"#3355BB\",\n";
329 print DOT " style=\"filled\",\n";
330 print DOT " fontname=\"sans\",\n";
331 print DOT " fontsize=\"24\"\n";
332 print DOT "];\n";
333 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
354 print DOT "}\n";
355 close DOT;
356 open DOT, "| $DotPath -Tgif > objdeps.gif";
357 print DOT "digraph ObjDeps {\n";
358 print DOT " size=\"8,10\";\n";
359 print DOT " margin=\"0.25\";\n";
360 print DOT " rankdir=\"LR\";\n";
361 print DOT " mclimit=\"50.0\";\n";
362 print DOT " ordering=\"out\";\n";
363 print DOT " center=\"1\";\n";
364 print DOT "node [shape=\"box\",\n";
365 print DOT " color=\"#000088\",\n";
366 print DOT " fillcolor=\"#FFFACD\",\n";
367 print DOT " fontcolor=\"#3355BB\",\n";
368 print DOT " fontname=\"sans\",\n";
369 print DOT " style=\"filled\",\n";
370 print DOT " fontsize=\"24\"\n";
371 print DOT "];\n";
372 print DOT "edge [dir=\"forward\",style=\"solid\",color=\"#000088\"];\n";
381 print DOT "}\n";
382 close DOT;