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

@ -175,7 +175,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
@ -257,9 +257,9 @@ 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()
if selection is not UNSET:
field_dict["selection"] = selection
field_dict["selection"] = selection.to_dict()
if storage is not UNSET:
field_dict["storage"] = storage
field_dict["type"] = type
@ -350,7 +350,7 @@ class step:
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
return field_dict
@ -422,9 +422,9 @@ 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()
if selection is not UNSET:
field_dict["selection"] = selection
field_dict["selection"] = selection.to_dict()
if storage is not UNSET:
field_dict["storage"] = storage
field_dict["type"] = type