[Python] Design & build airplanes from your specifications.
Ignore pyc files and update docs
Changed files
.gitignore
@@ -1,5 +1,6 @@
1
1
# .gitignore
2
2
**/__pycache__/
3
Added:
**/*.pyc
3
4
**/log.txt
4
5
**/*.html
5
6
**/*.pdf
README.org
@@ -13,6 +13,10 @@
13
13
#+NAME: fig:Test-Image
14
14
[[./doc/diagram.png]]
15
15
16
Added:
#+CAPTION: Second test image for the README
17
Added:
#+NAME: fig:Test-Image2
18
Added:
[[./doc/diagram2.png]]
19
Added:
16
20
* Program Structure
17
21
18
22
** =creator.py=
doc/diagram.txt
@@ -0,0 +1,17 @@
1
Added:
┌─────┐ ┌───┐ ┌────┐
2
Added:
│Alice│ │Bob│ │John│
3
Added:
└──┬──┘ └─┬─┘ └─┬──┘
4
Added:
│Authentication Request │ │
5
Added:
│───────────────────────>│ │
6
Added:
│ │ │
7
Added:
│Authentication Response │ │
8
Added:
│<─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─│ │
9
Added:
│ │ │
10
Added:
│ another Authentication Request │
11
Added:
│<─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ │
12
Added:
│ │ │
13
Added:
│ another Authentication Response │
14
Added:
│ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─ ─>│
15
Added:
┌──┴──┐ ┌─┴─┐ ┌─┴──┐
16
Added:
│Alice│ │Bob│ │John│
17
Added:
└─────┘ └───┘ └────┘
doc/diagram2.png
Binary files differ
doc/diagram2.pum
@@ -0,0 +1,5 @@
1
Added:
' this is a comment
2
Added:
Alice -> Bob: Authentication Request
3
Added:
Bob --> Alice: Authentication Response
4
Added:
John --> Alice: another Authentication Request
5
Added:
Alice --> John: another Authentication Response
example_airfoil.py
@@ -55,8 +55,8 @@
55
55
af.spar2 = creator.wing.Spar(af, 0.57, mt.aluminium)
56
56
# af.spar1.info_print(2)
57
57
# af.spar2.info_print(2)
58
Removed:
# af.spar1.info_save(SAVE_PATH, 'spar1')
59
Removed:
# af.spar2.info_save(SAVE_PATH, 'spar2')
58
Added:
af.spar1.info_save(SAVE_PATH, 'spar1')
59
Added:
af.spar2.info_save(SAVE_PATH, 'spar2')
60
60
61
61
# # Create stringer instance
62
62
# af.stringer = wing.Stringer()
example_airfoil.pyc
Binary files differ