File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,17 @@ service Commands{
1515 rpc CreateBeamCircularProfile (CreateBeamCircularProfileRequest ) returns (CreateBeamCircularProfileResponse );
1616
1717 rpc CreateBeamBodyLine (CreateBeamBodyLineRequest ) returns (CreateBeamBodyLineResponse );
18+
19+ rpc CreateBeamBodyLines (CreateBeamBodyLinesRequest ) returns (CreateBeamBodyLinesResponse );
1820
1921 rpc GetRootComponent (Empty ) returns (GetRootComponentResponse );
2022
2123 rpc FillFaces (FillFacesRequest ) returns (Empty );
2224
2325 rpc CreateDesignPoint (CreateDesignPointRequest ) returns (CreateDesignPointResponse );
2426
27+ rpc CreateDesignPoints (CreateDesignPointsRequest ) returns (CreateDesignPointsResponse );
28+
2529 rpc CreateDesignCurvesFromProfile (CreateDesignCurvesFromProfileRequest ) returns (CreateDesignCurvesFromProfileResponse );
2630
2731 rpc AssignMidSurfaceThickness (AssignMidSurfaceThicknessRequest ) returns (Empty );
@@ -85,6 +89,15 @@ message CreateBeamBodyLineResponse {
8589 string id = 1 ;
8690}
8791
92+ message CreateBeamBodyLinesRequest {
93+ string profile = 1 ;
94+ repeated Line lines = 2 ;
95+ }
96+
97+ message CreateBeamBodyLinesResponse {
98+ repeated string ids = 1 ;
99+ }
100+
88101message GetRootComponentResponse {
89102 string id = 1 ;
90103}
@@ -102,6 +115,15 @@ message CreateDesignPointResponse {
102115 string id = 1 ;
103116}
104117
118+ message CreateDesignPointsRequest {
119+ repeated Point points = 1 ;
120+ string parent = 2 ;
121+ }
122+
123+ message CreateDesignPointsResponse {
124+ repeated string ids = 1 ;
125+ }
126+
105127message CreateDesignCurvesFromProfileRequest {
106128 Geometries geometries = 1 ;
107129 string parent = 2 ;
You can’t perform that action at this time.
0 commit comments