-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: clean plots n prints init and keep Compare classes
- Loading branch information
1 parent
2352f0c
commit e39e7eb
Showing
3 changed files
with
2 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,4 @@ | |
TrapezoidalFins, | ||
) | ||
from .simulation import Flight | ||
from .plots.compare import Compare, CompareFlights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .compare import Compare, CompareFlights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +0,0 @@ | ||
from .aero_surface_prints import ( | ||
_EllipticalFinsPrints, | ||
_NoseConePrints, | ||
_RailButtonsPrints, | ||
_TailPrints, | ||
_TrapezoidalFinsPrints, | ||
) | ||
from .compare_prints import _ComparePrints | ||
from .environment_analysis_prints import _EnvironmentAnalysisPrints | ||
from .environment_prints import _EnvironmentPrints | ||
from .flight_prints import _FlightPrints | ||
from .hybrid_motor_prints import _HybridMotorPrints | ||
from .liquid_motor_prints import _LiquidMotorPrints | ||
from .motor_prints import _MotorPrints | ||
from .parachute_prints import _ParachutePrints | ||
from .rocket_prints import _RocketPrints | ||
from .solid_motor_prints import _SolidMotorPrints | ||
from .tank_geometry_prints import _TankGeometryPrints | ||
from .tank_prints import _TankPrints | ||