Обсуждение:Социотехническая система: различия между версиями
Материал из Поле цифровой дидактики
Patarakin (обсуждение | вклад) Новая страница: «<graphviz> digraph HM { edge [fontname="Helvetica,Arial,sans-serif"] node [shape=box, style=filled, color="black"]; M1; node [shape=circle,fixedsize=true,width=0.9, style=filled, color=white]; H1 H1 -> M1 ; M1 -> H1 ; } </graphviz>» |
Patarakin (обсуждение | вклад) |
||
| (не показано 12 промежуточных версий этого же участника) | |||
| Строка 1: | Строка 1: | ||
== T1 == | |||
<graphviz> | |||
digraph G { | |||
// Node settings | |||
node [style=filled, fillcolor=black, shape=square, label=""]; A; | |||
node [style=filled, fillcolor=white, shape=circle, label=""]; B; C; | |||
// Edge settings | |||
edge [color=black]; // Default edge color | |||
edge [dir=both]; | |||
A -> B [color=red]; // Red edge from A to B | |||
B -> C [color=black]; // Black edge from B to C | |||
} | |||
</graphviz> | |||
== T2 == | |||
<graphviz> | <graphviz> | ||
digraph HM { | digraph HM { | ||
edge [fontname="Helvetica,Arial,sans-serif"] | rankdir = LR ; | ||
node [shape= | edge [fontname="Helvetica,Arial,sans-serif"] ; | ||
node [shape=circle, | edge [dir=both]; | ||
node [shape=square, style=filled, color=black]; M1; | |||
node [shape=circle, style=filled, fillcolor=white, label=""]; H1 ; | |||
H1 -> M1 [label="H-M-interaction"]; | |||
} | |||
</graphviz> | |||
== T3 == | |||
<graphviz> | |||
digraph HM { | |||
layout=neato; | |||
edge [dir=both]; | |||
node [shape=square, style=filled, color=black]; M1; | |||
node [shape=circle, style=filled, fillcolor=white, label=""]; H1 ; H2; | |||
H1 -> M1 ; | H1 -> M1 ; | ||
M1 -> H1 ; | H2 -> M1 ; | ||
H1 -> H2 ; | |||
} | |||
</graphviz> | |||
== T4 == | |||
<graphviz> | |||
digraph HM { | |||
layout=neato; | |||
edge [dir=both]; | |||
node [shape=square, style=filled, color=black]; M1; M2; M3; M4; M5; | |||
node [shape=circle, style=filled, fillcolor=white, label=""]; H1 ; H2; H3; H4; H5; | |||
H1 -> H3 [label="This is link"] ; | |||
H3 -> M1 ; | |||
} | } | ||
</graphviz> | </graphviz> | ||
Текущая версия от 09:23, 6 декабря 2024
T1

T2

T3

T4

