remove unnecessary math inclusions

Commit
609becdbecb4945aebd9d1503fe537a99ab40b4b
Author
Marius Peter <blendoit@gmail.com>
Author date
Committer
Marius Peter <blendoit@gmail.com>
Committer date
creator.py
index 634277eb..6debf7be 100644..100644
@@ -16,9 +16,10 @@
16 16 import sys
17 17 import os.path
18 18 import numpy as np
19 Removed: from math import sin, cos, tan, atan, sqrt, ceil
19 Added: from math import sin, cos, atan, sqrt
20 20 import bisect as bi
21 21 import matplotlib.pyplot as plt
22 Added:
22 23
23 24 # This variable is required for main.py constant wing dimensions
24 25 # to be passed to inheriting classes (Airfoil, Spar, Stringer, Rib).