From b108cd016aeaa727041db9b69bd89aa4224d3cb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Ricart?= Date: Tue, 25 Jun 2024 17:18:52 +0200 Subject: [PATCH] add algo class --- algorigrame.d2 | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 algorigrame.d2 diff --git a/algorigrame.d2 b/algorigrame.d2 new file mode 100644 index 0000000..b7d99c3 --- /dev/null +++ b/algorigrame.d2 @@ -0,0 +1,33 @@ +classes: { + q: { + shape: diamond + } + start: { + shape: oval + label: Début + near: top-center + } + end: { + shape: oval + label: Fin + near: bottom-center + } + comment: { + style: { + stroke-dash: 3 + } + } + y: { + source-arrowhead.label: yes + style.stroke: green + source-arrowhead.style.font-color: green + } + n: { + source-arrowhead.label: no + style.stroke: red + source-arrowhead.style.font-color: red + } +} +direction: down +start.class: start +end.class: end