better working ws

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 13:13:13 -08:00
parent be246702fd
commit b6aa9ab98b
37 changed files with 771 additions and 593 deletions

View File

@ -130,7 +130,7 @@ class obj:
field_dict.update(self.additional_properties)
field_dict.update({})
if coords is not UNSET:
field_dict["coords"] = coords
field_dict["coords"] = coords.to_dict()
field_dict["type"] = type
if units is not UNSET:
field_dict["units"] = units
@ -206,7 +206,7 @@ class ply:
field_dict.update(self.additional_properties)
field_dict.update({})
if coords is not UNSET:
field_dict["coords"] = coords
field_dict["coords"] = coords.to_dict()
field_dict["type"] = type
if units is not UNSET:
field_dict["units"] = units
@ -382,7 +382,7 @@ class stl:
field_dict.update(self.additional_properties)
field_dict.update({})
if coords is not UNSET:
field_dict["coords"] = coords
field_dict["coords"] = coords.to_dict()
field_dict["type"] = type
if units is not UNSET:
field_dict["units"] = units