RepairToolMessage#

class ansys.geometry.core.tools.repair_tool_message.RepairToolMessage(success: bool, created_bodies: list[str], modified_bodies: list[str], found: int = -1, repaired: int = -1)#

Provides return message for the repair tool methods.

Overview#

success

The success of the repair operation.

created_bodies

The list of the created bodies after the repair operation.

modified_bodies

The list of the modified bodies after the repair operation.

found

Number of problem areas found for the repair operation.

repaired

Number of problem areas repaired during the repair operation.

Import detail#

from ansys.geometry.core.tools.repair_tool_message import RepairToolMessage

Property detail#

property RepairToolMessage.success: bool#

The success of the repair operation.

property RepairToolMessage.created_bodies: list[str]#

The list of the created bodies after the repair operation.

property RepairToolMessage.modified_bodies: list[str]#

The list of the modified bodies after the repair operation.

property RepairToolMessage.found: int#

Number of problem areas found for the repair operation.

property RepairToolMessage.repaired: int#

Number of problem areas repaired during the repair operation.