diff options
author | Marius Peter <blendoit@gmail.com> | 2019-06-17 23:46:24 -0700 |
---|---|---|
committer | Marius Peter <blendoit@gmail.com> | 2019-06-17 23:46:24 -0700 |
commit | 609becdbecb4945aebd9d1503fe537a99ab40b4b (patch) | |
tree | 696c20e7b777a4f1bbb71dd6736d5d769baa5b3a | |
parent | 80f81a2f53687eb9c98dcfad0ae12b6a17de5786 (diff) |
remove unnecessary math inclusions
-rw-r--r-- | creator.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,10 +16,11 @@ import sys import os.path import numpy as np -from math import sin, cos, tan, atan, sqrt, ceil +from math import sin, cos, atan, sqrt import bisect as bi import matplotlib.pyplot as plt + # This variable is required for main.py constant wing dimensions # to be passed to inheriting classes (Airfoil, Spar, Stringer, Rib). # This way, we don't have to redeclare our coordinates as parameters for |