1
0

Work in progress on sailing library
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-06-06 14:22:15 +02:00
parent 695fdf7576
commit 33d524bcc5
8 changed files with 114 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
title: Rules
date: 2021-05-23
type: book
weight: 1
---

View File

@ -0,0 +1,17 @@
---
title: Rule flowchart
date: 2021-05-23
type: book
weight: 1
---
```mermaid
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];
```