update_object_list#
- dlubal.api.rfem.Application.update_object_list(self, objs, model_id=None)#
Updates a list of objects in the model.
Example
rfem_app.update_object_list(
[
rfem.structure_core.Node(no=1, coordinate_1=1, coordinate_2=5),
rfem.structure_core.Line(no=1, definition_nodes=[1,2]),
]
)
var updated_list = new List<IMessage> {
new rfem.StructureCore.Node{
No = 1,
Coordinate1 = 1,
Coordinate2 = 5
},
new rfem.StructureCore.Line{
No = 1,
DefinitionNodes = { 1, 2 }
},
};
await rfem_app.update_object_list(updated_list);