### Flowchart of week48 #### digraph Week48 { # General settings node [fontname = "Handlee"]; bgcolor=transparent; # Blocks/clusters subgraph cluster_1 { color=transparent; step6 [ label = "Next..", width=0.5, shape=star, color=red]; step5 [ label = "Automatization:\n Segmentation, CenterLine\n and CurvedPlanar",]; step4 [ label = "Change of order\n in general process"]; } subgraph cluster_0 { color=transparent; step1 [ label = "Week47", shape=block]; step2 [ label = "Week48", shape=oval, color=blue]; step3 [ label = "Week49\n (6.12)", shape=block]; { rank=same; step1; step2; step3; } } # Steps step1 -> step2 -> step3; step2 -> step4; step2 -> step5; step2 -> step6; }