### Flowchart of week46 ####
digraph Week46 {
# General settings
node [fontname = "Handlee"];
bgcolor=transparent;
# Blocks/clusters
subgraph cluster_2 {
color=transparent;
step8 [ label = "Future..", shape=block, color=red];
step7 [ label = "Tests", shape=block];
step6 [ label = "Concepts", shape=block];
}
subgraph cluster_1 {
color=transparent;
step5 [ label = "Module in\n 3dSlicer", shape=diamond, color=orange];
step4 [ label = "Process automation", shape=block];
}
subgraph cluster_0 {
color=transparent;
step1 [ label = "Week45", shape=block];
step2 [ label = "Week46", shape=oval, color=blue];
step3 [ label = "Week47\n (22.11)", shape=block];
{
rank=same;
step1; step2; step3;
}
}
# Steps
step1 -> step2 -> step3;
step2 -> step4;
step4 -> step5;
step5 -> step6;
step5 -> step7;
step5 -> step8;
}