Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync: file sync performed by ansys-tools-repo-sync #128

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,7 @@ message ProjectCurvesRequest {
Geometries curves=2;
Direction direction=3;
bool closest_face=4;
Plane plane = 5;
}

message ProjectCurvesResponse {
Expand All @@ -617,6 +618,7 @@ message ImprintCurvesRequest {
string body=1;
Geometries curves=2;
repeated string faces=3;
Plane plane = 4;
}

message PowerSelectFacesByAreaRangeRequest {
Expand Down
14 changes: 5 additions & 9 deletions ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}