Skip to content

Commit 2a2bc4d

Browse files
Merge branch 'main' into release/0.4
2 parents 6da8668 + cd33d98 commit 2a2bc4d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

ansys/api/geometry/v0/bodies.proto

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ service Bodies
4848

4949
rpc CreateSweepingChain(CreateSweepingChainRequest) returns (Body);
5050

51+
rpc SweepWithGuide(SweepWithGuideRequest) returns (SweepWithGuideResponse);
52+
5153
rpc GetVolume(ansys.api.dbu.v0.EntityIdentifier) returns(GetVolumeResponse);
5254

5355
rpc GetTessellation(ansys.api.dbu.v0.EntityIdentifier) returns(GetTessellationResponse);
@@ -275,6 +277,24 @@ message CreateSweepingChainRequest{
275277
repeated TrimmedCurve path = 4;
276278
}
277279

280+
message SweepWithGuideRequestData {
281+
string name=1;
282+
ansys.api.dbu.v0.EntityIdentifier parent=2;
283+
Plane plane=3;
284+
Geometries geometries=4;
285+
TrimmedCurve path=5;
286+
TrimmedCurve guide=6;
287+
bool tight_tolerance=7;
288+
}
289+
290+
message SweepWithGuideRequest {
291+
repeated SweepWithGuideRequestData request_data=1;
292+
}
293+
294+
message SweepWithGuideResponse {
295+
repeated Body bodies=1;
296+
}
297+
278298
message CreatePlanarBodyRequest {
279299
string name=1;
280300
string parent=2;

0 commit comments

Comments
 (0)