File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,8 @@ service Bodies
3131 rpc GetFaces (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetFacesResponse );
3232
3333 rpc CreateBodyFromFace (CreateBodyFromFaceRequest ) returns (Body );
34+
35+ rpc CreateBodyFromLoftWithGuides (CreateBodyFromLoftWithGuidesRequest ) returns (CreateBodyFromLoftWithGuidesResponse );
3436
3537 rpc CreateExtrudedBodyFromFaceProfile (CreateExtrudedBodyFromFaceProfileRequest ) returns (Body );
3638
@@ -400,4 +402,19 @@ message ExportAndDownloadBodyRequest{
400402
401403message ExportAndDownloadBodyResponse {
402404 bytes data = 1 ;
405+ }
406+
407+ message CreateBodyFromLoftWithGuidesRequestData {
408+ string name = 1 ;
409+ ansys.api.dbu.v0.EntityIdentifier parent = 2 ;
410+ repeated TrimmedCurveList profiles = 3 ;
411+ TrimmedCurveList guides = 6 ;
412+ }
413+
414+ message CreateBodyFromLoftWithGuidesRequest {
415+ repeated CreateBodyFromLoftWithGuidesRequestData request_data = 1 ;
416+ }
417+
418+ message CreateBodyFromLoftWithGuidesResponse {
419+ repeated Body created_bodies = 1 ;
403420}
You can’t perform that action at this time.
0 commit comments