File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff 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+
278298message CreatePlanarBodyRequest {
279299 string name = 1 ;
280300 string parent = 2 ;
You can’t perform that action at this time.
0 commit comments