update_object#
- dlubal.api.rstab.Application.update_object(self, obj, model_id=None)#
Updates a single object in the model.
- Parameters:
obj (obj) – An object to be updated.
model_id (ModelId | None) – Unique identifier of the model. If None, the active model is used.
- Returns:
None
Method Type: Core
Usage
rstab_app.update_object(rstab.structure_core.Node(no=1, coordinate_1=1, coordinate_2=5))
await rstab_app.update_object(rstab.structure_core.Node(no=1, coordinate_1=1, coordinate_2=5));