Source code for rocketpy.prints.tank_prints

[docs] class _TankPrints: """Class that holds prints methods for Tank class. Attributes ---------- _TankPrints.tank : tank Tank object that will be used for the prints. """
[docs] def __init__( self, tank, ): """Initializes _TankPrints class Parameters ---------- tank: Tank Instance of the Tank class. Returns ------- None """ self.tank = tank return None
[docs] def all(self): """Prints out all data available about the Tank. Returns ------- None """ return None