Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
buildsupport
Commits
d2f8e032
Commit
d2f8e032
authored
Jul 24, 2016
by
Maxime Perrotin
Browse files
STG configure graphviz with proper default values
parent
4b28e43c
Pipeline
#1041
skipped
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
misc/iv.st
View file @
d2f8e032
...
...
@@ -5,12 +5,15 @@ interface_view(arrsFunctNames, arrsConnections) ::= <<
#
Save
this
output
to
file
.
dot
and
run
"neato file.dot -Tpng -o out.png"
digraph
interfaceview
{
<
arrsFunctNames:
{each| <each
>
[
shape
=
box
,
label
=
"<each>"
];};
separator=
"\n"
>
overlap
=
scale
;
splines=
ortho
;
sep=
0.2
;
<
arrsFunctNames:
{
each
|
<
each
>
[
shape
=
box
,
style
=
filled
,
fontsize
=
36
,
margin
=
0.8
label=
"<each>"
];};
separator=
"\n"
>
<
arrsConnections
;
separator=
"\n"
>
}
>>
connection
(
sFrom
,
sTo
,
arrsMessages
)
:
:=
<<
<
sFrom
>
->
<
sTo
>
[
label
=
"[<arrsMessages; separator="
,\
n
">]"
];
<
sFrom
>
->
<
sTo
>
[
fontsize
=
20
,
color
=
blue
,
label
=
"[<arrsMessages; separator="
,\
n
">]"
];
>>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment