Difference between revisions of "Rc-dukes"
Jump to navigation
Jump to search
Line 152: | Line 152: | ||
= Messages = | = Messages = | ||
− | <source lang='bash' | + | <source lang='bash' line > |
digraph VertXMessages { | digraph VertXMessages { | ||
subgraph cluster_car { | subgraph cluster_car { |
Revision as of 08:39, 8 January 2020
Click here to comment see Self Driving RC Car
Characters
Messages
1digraph VertXMessages {
2 subgraph cluster_car {
3 label="Car"
4 car [
5 label=" "
6 image="Bo.png"
7 fontcolor=white
8 URL="https://en.wikipedia.org/wiki/Bo_Duke"
9 ]
10 carlabel [
11 shape="note"
12 label="car\nBO"
13 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/car/package-summary.html"
14 ]
15 carlabel<-car
16 watchdog [
17 label=" "
18 image="Flash.png"
19 fontcolor=white
20 URL="https://dukesofhazzard.fandom.com/wiki/Flash"
21 ]
22 watchdoglabel [
23 shape="note"
24 label="watchdog\nFLASH"
25 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/watchdog/package-summary.html"
26 ]
27 watchdoglabel<-watchdog
28 }
29 subgraph cluster_laptop {
30 label="Laptop"
31 action [
32 label=" "
33 image="Luke.png"
34 fontcolor=white
35 URL="https://en.wikipedia.org/wiki/Luke_Duke"
36 ]
37 actionlabel [
38 shape="note"
39 label="action\nLUKE"
40 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/action/package-summary.html"
41 ]
42 actionlabel<-action
43 app [
44 label=" "
45 image="UncleJesse.png"
46 fontcolor=white
47 URL="https://en.wikipedia.org/wiki/The_Dukes_of_Hazzard#Jesse"
48 ]
49 applabel [
50 shape="note"
51 label="app\nUNCLE_JESSE"
52 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/app/package-summary.html"
53 ]
54 applabel<-app
55 cameramatrix [
56 label=" "
57 image="Cooter.png"
58 fontcolor=white
59 URL="https://dukesofhazzard.fandom.com/wiki/Cooter_Davenport_(Ben_Jones)"
60 ]
61 cameramatrixlabel[
62 shape="note"
63 label="camera-matrix\nCOOTER"
64 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/camera-matrix/package-summary.html"
65 ]
66 cameramatrixlabel<-cameramatrix
67
68
69 detect [
70 label=" "
71 image="Daisy.png"
72 fontcolor=white
73 URL="https://en.wikipedia.org/wiki/Daisy_Duke"
74 ]
75 detectlabel [
76 shape="note"
77 label="detect\nDAISY"
78 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/detect/package-summary.html"
79 ]
80 detectlabel<-detect
81 geometry [
82 label=" "
83 image="Enos.png"
84 fontcolor=white
85 URL="https://dukesofhazzard.fandom.com/wiki/Enos_Strate_(Sonny_Shroyer)"
86 ]
87 geometrylabel [
88 shape="note"
89 label="geometry\nENOS"
90 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/geometry/package-summary.html"
91 ]
92 geometrylabel<-geometry
93 imageview [
94 label=" "
95 image="Rosco.png"
96 fontcolor=white
97 URL="https://dukesofhazzard.fandom.com/wiki/Rosco_Purvis_Coltrane_(James_Best)"
98 ]
99 imageviewlabel[
100 shape="note"
101 label="imageview\nROSCO"
102 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/imageview/package-summary.html"
103 ]
104 imageviewlabel<-imageview
105 roi [
106 label=" "
107 image="Cletus.png"
108 fontcolor=white
109 URL="https://dukesofhazzard.fandom.com/wiki/Cletus_Hogg"
110 ]
111 roilabel [
112 shape="note"
113 label="roi\nCLETUS"
114 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/roi/package-summary.html"
115 ]
116 roilabel<-roi
117 server [
118 label=" "
119 image="BoarsNest.png"
120 fontcolor=white
121 URL="https://en.wikipedia.org/wiki/Boar%27s_Nest"
122 ]
123 serverlabel [
124 shape="note"
125 label="server\nBOARS_NEST"
126 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/server/package-summary.html"
127 ]
128 serverlabel<-server
129
130
131 }
132 subgraph cluster_tablet {
133 webcontrol [
134 label=" "
135 image="BossHogg.png"
136 fontcolor=white
137 URL="https://dukesofhazzard.fandom.com/wiki/Boss_Hogg_(Sorrell_Booke)"
138 ]
139 webcontrollabel[
140 shape="note"
141 label="webcontrol\nBOSS_HOGG"
142 URL="https://rc-dukes.github.io/dukes/dukes/apidocs/nl/vaneijndhoven/dukes/webcontrol/package-summary.html"
143 ]
144 webcontrollabel<-webcontrol
145 }
146 server -> imageview [ label="deploy" ]
147 server -> webcontrol [ label="deploy" ]
148 server -> action [ label="deploy" ]
149 server -> detect [ label="deploy" ]
150 detect -> car [ label="http" ]
151 webcontrol -> imageview [ label="http" ]
152 webcontrol -> car [ label="http" ]
153 webcontrol -> watchdog [ label="vert.x" ]
154}