feat: airframe documentation for spacecraft (#25294)

This commit is contained in:
Pedro Roque
2025-09-02 16:27:26 -07:00
committed by GitHub
parent 9015001b42
commit 271cb49597
4 changed files with 223 additions and 4 deletions
+2 -1
View File
@@ -14,7 +14,6 @@ class AirframeGroup(object):
self.af_class = af_class
self.airframes = []
def AddAirframe(self, airframe):
"""
Add airframe to the airframe group
@@ -107,6 +106,8 @@ class AirframeGroup(object):
return "Balloon"
elif (self.type == "Vectored 6 DOF UUV"):
return "Vectored6DofUUV"
elif self.type == "Free-Flyer":
return "FreeFlyer"
return "AirframeUnknown"
def GetAirframes(self):