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
jonahrb committed Mar 14, 2024
2 parents 05b1b91 + a30c7a9 commit 7658d06
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ansys/api/geometry/v0/bodies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ service Bodies

rpc CreateExtrudedBody(CreateExtrudedBodyRequest) returns (Body);

rpc CreateSweepingProfile(CreateSweepingProfileRequest) returns (Body);

rpc CreateSweepingChain(CreateSweepingChainRequest) returns (Body);

rpc GetVolume(ansys.api.dbu.v0.EntityIdentifier) returns(GetVolumeResponse);

rpc GetTessellation(ansys.api.dbu.v0.EntityIdentifier) returns(GetTessellationResponse);
Expand Down Expand Up @@ -174,6 +178,21 @@ message CreateExtrudedBodyFromFaceProfileRequest {
double distance=4;
}

message CreateSweepingProfileRequest{
string name=1;
string parent=2;
Plane plane=3;
Geometries geometries=4;
repeated TrimmedCurve path = 5;
}

message CreateSweepingChainRequest{
string name=1;
string parent=2;
repeated TrimmedCurve chain = 3;
repeated TrimmedCurve path = 4;
}

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

0 comments on commit 7658d06

Please sign in to comment.