-
Notifications
You must be signed in to change notification settings - Fork 1
/
shm_arch.gv
33 lines (28 loc) · 858 Bytes
/
shm_arch.gv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
digraph arch {
// Nodes
node [shape=box,style=filled,color=white]
rosnodeMekaInt [label="vrep_meka_interface_node"]
rosnodeShm [label="shm_hummanoid_node"]
sharedmem [label="Shared Memory"]
// Config
rankdir=LR;
rank=same rosnodeShm rosnodeMekaInt;
subgraph clusterROS {
node [style=filled,color=white];
style=filled;
color=lightgrey;
rosnodeMekaInt -> rosnodeShm [style=dashed, color=black, label="/hummanoid_command"]
rosnodeShm -> rosnodeMekaInt [style=dashed, color=black, label="/hummanoid_state"]
label = "ROS";
}
subgraph clusterM3 {
node [style=filled,color=white];
style=filled;
color=lightgrey;
sharedmem;
label = "M3";
}
// Outter Conections
sharedmem -> rosnodeShm [style=dashed, color=grey]
rosnodeShm -> sharedmem [style=dashed, color=grey]
}