Commit 124c4173f1a226dc5ac3b714a2f243d652098317
1 parent
e9c0e7ce55
Exists in
master
Added color to use cases diagram
Showing 1 changed file with 20 additions and 9 deletions Side-by-side Diff
use_cases_diagram.dot
View file @
124c417
1 | 1 | digraph G{ |
2 | 2 | ratio=0.75; |
3 | 3 | rankdir="LR"; |
4 | - node[shape = box]; | |
5 | - "[A1] Register"[fillcolor="#aaaaff", style=filled]; | |
6 | - "[A2] Login"[fillcolor="#aaaaff", style=filled]; | |
7 | - "[A8] Logout"[fillcolor="#aaaaff", style=filled]; | |
8 | - "[A6] Forgot Password"[fillcolor="#aaaaff", style=filled]; | |
9 | - "[A5] Change Password"[fillcolor="#aaaaff", style=filled]; | |
10 | - "[A3] Add Class"[fillcolor="#aaaaff", style=filled]; | |
11 | - #"[R40] Configure Notifications"[fillcolor="#ffaaff", style=filled]; | |
4 | + node[shape=box]; | |
5 | + "[A1] Register"[fillcolor="#6699ff", style=filled]; | |
6 | + "[A2] Login"[fillcolor="#6699ff", style=filled]; | |
7 | + "[A3] Add Class"[fillcolor="#6699ff", style=filled]; | |
8 | + "[A5] Change Password"[fillcolor="#6699ff", style=filled]; | |
9 | + "[A6] Forgot Password"[fillcolor="#6699ff", style=filled]; | |
10 | + "[A8] Logout"[fillcolor="#6699ff", style=filled]; | |
11 | + "[A9] Contact Admins"[fillcolor="#6699ff", style=filled]; | |
12 | + | |
13 | + "[D] Edit Deck"[fillcolor="#cctff99", style=filled]; | |
14 | + | |
15 | + "[F1] Push Flashcard"[fillcolor="#ff5050", style=filled]; | |
16 | + "[F2] Edit Card"[fillcolor="#ff5050", style=filled]; | |
17 | + "[F3] Pull Flashcard"[fillcolor="#ff5050", style=filled]; | |
18 | + "[F6] Select Blanks"[fillcolor="#ff5050", style=filled]; | |
19 | + "[F10] View Class Feed"[fillcolor="#ff5050", style=filled]; | |
20 | + | |
21 | + "[R40] Configure Notifications"[fillcolor="#ffaaff", style=filled]; | |
22 | + | |
12 | 23 | "[A1] Register"->"[A2] Login"; |
13 | 24 | "[A2] Login"->"[A2] Login"; |
14 | 25 | "[A2] Login"->"[A6] Forgot Password"; |
... | ... | @@ -29,7 +40,7 @@ |
29 | 40 | "[F10] View Class Feed" ->"[R16] Study Deck"; |
30 | 41 | "[F10] View Class Feed" ->"[D] Edit Deck"; |
31 | 42 | "[A9] Contact Admins" |
32 | - "User" [shapefile="stick.png"]; | |
43 | + "User" [shape=none, shapefile="stick.png"]; | |
33 | 44 | "User"->"[A1] Register"; |
34 | 45 | } |