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
31
31
rpc GetFaces (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetFacesResponse );
32
32
33
33
rpc CreateBodyFromFace (CreateBodyFromFaceRequest ) returns (Body );
34
+
35
+ rpc CreateBodyFromLoftWithGuides (CreateBodyFromLoftWithGuidesRequest ) returns (CreateBodyFromLoftWithGuidesResponse );
34
36
35
37
rpc CreateExtrudedBodyFromFaceProfile (CreateExtrudedBodyFromFaceProfileRequest ) returns (Body );
36
38
@@ -400,4 +402,19 @@ message ExportAndDownloadBodyRequest{
400
402
401
403
message ExportAndDownloadBodyResponse {
402
404
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 ;
403
420
}
You can’t perform that action at this time.
0 commit comments