Last active
April 13, 2016 09:24
-
-
Save dolpen/ecce09f16b47b788e9f74b1fbf260a61 to your computer and use it in GitHub Desktop.
factorio_line_nodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
subgraph cluster_1 { | |
gea[label="歯車"]; | |
} | |
subgraph cluster_2 { | |
bel[label="輸送ベルト"]; | |
} | |
subgraph cluster_3 { | |
ppg[label="プロパン"]; | |
ppt[label="プラスチック"]; | |
sul[label="硫黄"]; | |
sua[label="硫酸"]; | |
ppg -> ppt; | |
ppg -> sul; | |
sul -> sua; | |
label = "コンビナート"; | |
} | |
subgraph cluster_4 { | |
cab[label="銅線"]; | |
cir1[label="緑チップ"]; | |
cir2[label="赤チップ"]; | |
cab -> cir1; | |
cir1->cir2; | |
label = "回路生産ライン"; | |
} | |
subgraph cluster_5 { | |
stl[label="鋼鉄"]; | |
} | |
subgraph cluster_6 { | |
ins2[label="インサータ"]; | |
ins4[label="高速"]; | |
ins5[label="スマート"]; | |
ins2->ins4; | |
ins4->ins5; | |
} | |
subgraph cluster_7 { | |
bat[label="電池"]; | |
} | |
scp1[color=red,label="赤"]; | |
scp2[color=green,label="緑"]; | |
scp3[color=blue,label="青"]; | |
{ rank=same; scp1 scp2 scp3 } | |
ppt -> cir2; | |
sua -> bat; | |
gea -> ins2; | |
gea -> bel; | |
cir1 -> ins2; | |
cir1 -> ins4; | |
cir1 -> ins5; | |
gea -> scp1; | |
ins2 -> scp2; | |
bel -> scp2; | |
bat -> scp3; | |
cir2 -> scp3; | |
ins5 -> scp3; | |
stl -> scp3; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
subgraph cluster_1 { | |
stl[label="鋼鉄"]; | |
} | |
subgraph cluster_2 { | |
cab[label="銅線"]; | |
cir1[label="緑チップ"]; | |
cir2[label="赤チップ"]; | |
cir3[label="青チップ"]; | |
cab -> cir1; | |
cir1->cir2; | |
cir1->cir3; | |
cir2->cir3; | |
label = "回路生産ライン"; | |
} | |
subgraph cluster_3 { | |
oil2[label="軽油"]; | |
ppg[label="プロパン"]; | |
ppt[label="プラスチック"]; | |
sul[label="硫黄"]; | |
sua[label="硫酸"]; | |
ppg -> ppt; | |
ppg -> sul; | |
sul -> sua; | |
label = "コンビナート"; | |
} | |
subgraph cluster_4 { | |
smo1[label="速度モジュール"]; | |
} | |
subgraph cluster_5 { | |
sfu[label="固形燃料"]; | |
} | |
pan[color=green,label="断熱材"]; | |
ssu[color=blue,label="制御ユニット"]; | |
rfu[color=red,label="ロケット燃料"]; | |
{ rank=same;pan ssu rfu } | |
cir1 -> smo1; | |
cir2 -> smo1; | |
ppt -> cir2; | |
sua -> cir3; | |
ppt -> pan; | |
stl -> pan; | |
smo1 -> ssu; | |
cir3 -> ssu; | |
oil2 -> sfu; | |
sfu -> rfu; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment