GeometryIssue#

class ansys.geometry.core.tools.check_geometry.GeometryIssue(message_type: str, message_id: str, message: str, edges: list[str], faces: list[str])#

Provides return message for the repair tool methods.

Overview#

message_type

The type of the message (warning, error, info).

message_id

The identifier for the message.

message

The content of the message.

edges

The List of edges (if any) that are part of the issue.

faces

The List of faces (if any) that are part of the issue.

Import detail#

from ansys.geometry.core.tools.check_geometry import GeometryIssue

Property detail#

property GeometryIssue.message_type: str#

The type of the message (warning, error, info).

property GeometryIssue.message_id: str#

The identifier for the message.

property GeometryIssue.message: str#

The content of the message.

property GeometryIssue.edges: list[str]#

The List of edges (if any) that are part of the issue.

property GeometryIssue.faces: list[str]#

The List of faces (if any) that are part of the issue.