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 #83

Merged
merged 1 commit into from
Aug 6, 2024
Merged
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
17 changes: 17 additions & 0 deletions ansys/api/geometry/v0/bodies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ service Bodies

rpc SetFillStyle(SetFillStyleRequest) returns (SetFillStyleResponse);

rpc GetColor(ansys.api.dbu.v0.EntityIdentifier) returns (GetColorResponse);

rpc SetColor(SetColorRequest) returns (SetColorResponse);

rpc Copy(CopyRequest) returns (Body);

rpc GetUpdateState(ansys.api.dbu.v0.EntityIdentifier) returns (UpdateState);
Expand Down Expand Up @@ -269,6 +273,19 @@ message SetFillStyleResponse {
bool result=1;
}

message GetColorResponse {
string color=1;
}

message SetColorRequest {
string body_id=1;
string color=2;
}

message SetColorResponse {
bool result=1;
}

message CopyRequest {
string id=1;
string parent=2;
Expand Down