update_udp#

Modeler3D.update_udp(object_name, operation_name, udp_parameters_list)[source]#

Update an existing geometrical object that was originally created using a user-defined primitive (UDP).

Parameters:
object_namestr

Name of the object to update.

operation_namestr

Name of the operation used to create the object.

udp_parameters_listlist

List of the UDP parameters to update and their value.

Returns:
bool

True when successful.

References

>>> oEditor.CreateUserDefinedPart

Examples

>>> self.aedtapp.modeler.update_udp(object_name="ClawPoleCore",
...                                 operation_name="CreateUserDefinedPart",
...                                 udp_parameters_list=[["Length","110mm"], ["DiaGap","125mm"]])
True