Skip to content

Commit

Permalink
Merge branch 'main' into release/0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RobPasMue committed Mar 4, 2024
2 parents 6c1916e + e278ee7 commit 5059a50
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ansys/api/geometry/v0/bodies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ service Bodies

rpc CreatePlanarBody(CreatePlanarBodyRequest) returns (Body);

rpc CreateSphereBody(CreateSphereBodyRequest) returns (Body);

rpc CreateExtrudedBody(CreateExtrudedBodyRequest) returns (Body);

rpc GetVolume(ansys.api.dbu.v0.EntityIdentifier) returns(GetVolumeResponse);
Expand Down Expand Up @@ -159,6 +161,13 @@ message CreatePlanarBodyRequest {
Geometries geometries=4;
}

message CreateSphereBodyRequest {
string name=1;
string parent=2;
Point center=3;
double radius=4;
}

message CreateExtrudedBodyRequest {
string name=1;
string parent=2;
Expand Down

0 comments on commit 5059a50

Please sign in to comment.