-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kirill Kulakov
committed
Feb 19, 2024
1 parent
3998f80
commit 2277c78
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Примеры диаграмм на Mermaid | ||
|
||
## Литература и справочные руководства | ||
* https://mermaid.js.org/ | ||
* https://plantuml.com/ | ||
|
||
## Диаграмма активности | ||
* Документация: https://plantuml.com/ru/activity-diagram-beta | ||
* Онлайн генерация | ||
```mermaid | ||
@startuml | ||
start | ||
:Скачать шаблон проекта; | ||
if (шаблон скачан архивом) then (да) | ||
: удалить папку googletest в external; | ||
: подключить связь с googletest репозиторием вручную; | ||
else (нет) | ||
: инициировать и обновить подмодули; | ||
endif | ||
:Реализовать функцию вычисления **корней** уравнения; | ||
:Написать тесты; | ||
:Выложить в Github; | ||
stop | ||
@enduml | ||
``` | ||
* [оффлайн файл](diagrams/activity.puml) | ||
![Диаграмма активности](diagrams/activity.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@startuml | ||
start | ||
:Скачать шаблон проекта; | ||
if (шаблон скачан архивом) then (да) | ||
: удалить папку googletest в external; | ||
: подключить связь с googletest репозиторием вручную; | ||
else (нет) | ||
: инициировать и обновить подмодули; | ||
endif | ||
:Реализовать функцию вычисления **корней** уравнения; | ||
:Написать тесты; | ||
:Выложить в Github; | ||
stop | ||
@enduml |