class Coordinates docstring

Commit
2504b0dca805c349feed3716390177af69af6b80
Author
Marius Peter <blendoit@gmail.com>
Author date
Committer
Marius Peter <blendoit@gmail.com>
Committer date
creator.py
index 9a0eaddc..645ed9b0 100644..100644
@@ -31,8 +31,17 @@
31 31
32 32 class Coordinates:
33 33 """
34 Removed: All classes need coordinates relative to the chord & semi-span.
35 Removed: So, they all inherit from this class.
34 Added: All airfoil components need the following:
35 Added:
36 Added: Parameters:
37 Added: * Component material
38 Added: * Coordinates relative to the chord & semi-span.
39 Added:
40 Added: Methods:
41 Added: * Print component coordinates
42 Added: * Save component coordinates to file specified in main.py
43 Added:
44 Added: So, all component classes inherit from class Coordinates.
36 45 """
37 46
38 47 def __init__(self, chord, semi_span):