Skip to content

Commit

Permalink
ENH: Add plots for generic and linear generic surfaces
Browse files Browse the repository at this point in the history
Make format didn't work. Will run it after review and fixes.
  • Loading branch information
LUCKIN13 committed Sep 15, 2024
1 parent e1737e2 commit 09659a1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions rocketpy/plots/aero_surface_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,3 +409,19 @@ def all(self):
None
"""
self.drag_coefficient_curve()


class _GenericSurfacePlots(_AeroSurfacePlots):
"""Class that contains all generic surface plots."""

def draw(self):
pass

Check warning on line 418 in rocketpy/plots/aero_surface_plots.py

View check run for this annotation

Codecov / codecov/patch

rocketpy/plots/aero_surface_plots.py#L418

Added line #L418 was not covered by tests



class _LinearGenericSurfacePlots(_AeroSurfacePlots):
"""Class that contains all linear generic surface plots."""

def draw(self):
pass

Check warning on line 426 in rocketpy/plots/aero_surface_plots.py

View check run for this annotation

Codecov / codecov/patch

rocketpy/plots/aero_surface_plots.py#L426

Added line #L426 was not covered by tests

0 comments on commit 09659a1

Please sign in to comment.