"대문"의 두 판 사이의 차이

감성상자
둘러보기로 가기 검색하러 가기
잔글 (→‎편집)
잔글 (→‎편집)
17번째 줄: 17번째 줄:
 
http://magjac.com/graphviz-visual-editor/
 
http://magjac.com/graphviz-visual-editor/
  
<quickgv name='my1' usage="tree"  theme="default">
+
<quickgv name='my1' usage="G"  theme="default">
     a [shape="ellipse" style="filled" fillcolor="#1f77b4"]
+
  subgraph cluster_0 {
     b [shape="polygon" style="filled" fillcolor="#ff7f0e"]
+
     style=filled;
     n2 [ shape=ellipse]
+
    color=lightgrey;
     n3 [ shape=circle]
+
     node [style=filled,color=white];
    n4 [ shape=egg]
+
     a0 -> a1 -> a2 -> a3;
    n5 [ shape=triangle]
+
     label = "process #1";
    n6 [ shape=box]
+
  }
  
     a -> b [fillcolor="#a6cee3" color="#1f78b4"]
+
  subgraph cluster_1 {
    n2 -> n3
+
    node [style=filled];
 +
     b0 -> b1 -> b2 -> b3;
 +
    label = "process #2";
 +
    color=blue
 +
  }
 +
  start -> a0;
 +
  start -> b0;
 +
  a1 -> b3;
 +
  b2 -> a3;
 +
  a3 -> a0;
 +
  a3 -> end;
 +
  b3 -> end;
  
 +
  start [shape=Mdiamond];
 +
  end [shape=Msquare];
 
</quickgv>
 
</quickgv>
  

2020년 10월 3일 (토) 14:08 판

처음

문서만들기

편집

http://magjac.com/graphviz-visual-editor/