Skip to content

Commit

Permalink
sync: file sync performed by ansys-tools-repo-sync (#83)
Browse files Browse the repository at this point in the history
Co-authored-by: tfs_caslservice <tfs_caslservice@PDUCASLVM02>
  • Loading branch information
pyansys-ci-bot and tfs_caslservice authored Aug 6, 2024
1 parent 2ad1182 commit ef5f3b0
Showing 1 changed file with 17 additions and 0 deletions.
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

0 comments on commit ef5f3b0

Please sign in to comment.