FAIRYFAR-INTERNAL
 
  FAIRYFAR-INTERNAL  |  SITEMAP  |  ABOUT-ME  |  HOME  
您的足迹: dot工具
dot工具

dot可以绘制无向图、有向图。

一、无向图

编写dot文件,命名为dot_test.dot,内容如下:

snippet.txt
graph G
{
  //注释行
  run[shape=box, style="filled", color="1,1,1"];
  run -- intr[label="begin", color="1,1,1"];
  intr -- runbl;
  runbl -- run;
  run -- kernel;
}

执行命令:

snippet.bash
dot -Tpng -o g.png dot_test.dot

生成以下图:

img

二、有向图

编写dot文件,命名为dot_test.dot,内容如下:

snippet.txt
digraph G
{
  //注释行
  run[shape=box, style="filled", color="1,1,1"];
  run -- intr[label="begin", color="1,1,1"];
  intr -- runbl;
  runbl -- run;
  run -- kernel;
}

执行命令:

snippet.bash
dot -Tpng -o g.png dot_test.dot

生成以下图:

img



打赏作者以资鼓励:
移动端扫码阅读: