1
0
jcktrue.dk/content/sail-library/rules/flowchart.md
Jens True 33d524bcc5
All checks were successful
continuous-integration/drone/push Build is passing
Work in progress on sailing library
2021-06-06 14:22:15 +02:00

259 B

title date type weight
Rule flowchart 2021-05-23 book 1
graph TD
    Start[Started] --> B{Same tack?};
    B -- Yes --> C[Overlapped];
    B -- No --> D[Non overlapped]
    C --> D[Rethink];
    D --> B;
    B -- No ----> E[End];