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
48
48
49
49
rpc CreateSweepingChain (CreateSweepingChainRequest ) returns (Body );
50
50
51
+ rpc SweepWithGuide (SweepWithGuideRequest ) returns (SweepWithGuideResponse );
52
+
51
53
rpc GetVolume (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetVolumeResponse );
52
54
53
55
rpc GetTessellation (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetTessellationResponse );
@@ -275,6 +277,24 @@ message CreateSweepingChainRequest{
275
277
repeated TrimmedCurve path = 4 ;
276
278
}
277
279
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
+
278
298
message CreatePlanarBodyRequest {
279
299
string name = 1 ;
280
300
string parent = 2 ;
You can’t perform that action at this time.
0 commit comments