WIP import functionality (PSK working, PSA in the works)

This commit is contained in:
Colin Basnett
2021-09-07 00:02:59 -07:00
parent 0622cf43e5
commit 4a9a921583
11 changed files with 327 additions and 18 deletions

View File

@@ -17,6 +17,12 @@ class Quaternion(Structure):
('w', c_float),
]
def __iter__(self):
yield self.x
yield self.y
yield self.z
yield self.w
class Section(Structure):
_fields_ = [