diff --git a/ansys/api/geometry/v0/commands.proto b/ansys/api/geometry/v0/commands.proto index a4173e1..983e694 100644 --- a/ansys/api/geometry/v0/commands.proto +++ b/ansys/api/geometry/v0/commands.proto @@ -607,6 +607,7 @@ message ProjectCurvesRequest { Geometries curves=2; Direction direction=3; bool closest_face=4; + Plane plane = 5; } message ProjectCurvesResponse { @@ -617,6 +618,7 @@ message ImprintCurvesRequest { string body=1; Geometries curves=2; repeated string faces=3; + Plane plane = 4; } message PowerSelectFacesByAreaRangeRequest { diff --git a/ansys/api/geometry/v0/models.proto b/ansys/api/geometry/v0/models.proto index 211e7e4..ad29dcb 100644 --- a/ansys/api/geometry/v0/models.proto +++ b/ansys/api/geometry/v0/models.proto @@ -736,17 +736,13 @@ message InspectGeometryResultIssue { InspectGeometryMessageType message_type = 1; InspectGeometryMessageId message_id = 2; - repeated IssueEntityAndType issue_entities_and_type = 3; - string message = 4; - optional double scalar_value = 5; + repeated Face faces = 3; + repeated Edge edges = 4; + string message = 5; + optional double scalar_value = 6; } message InspectGeometryResult { - ansys.api.dbu.v0.EntityIdentifier body = 1; + Body body = 1; repeated InspectGeometryResultIssue issues = 2; -} - -message IssueEntityAndType { - ansys.api.dbu.v0.EntityIdentifier entity_id = 1; - string entity_type = 2; } \ No newline at end of file