File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -848,6 +848,7 @@ message GetAssemblyResponse {
848848 map <string , CoordinateSystemList > component_coord_systems = 7 ;
849849 map <string , int32 > component_shared_topologies = 8 ;
850850 repeated Beam beams = 9 ;
851+ repeated Curve design_points = 10 ;
851852}
852853
853854message MoveTranslateRequest {
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ message Curve{
6868 string owner_name = 2 ;
6969 double length = 3 ;
7070 repeated Point points = 4 ;
71+ ansys.api.dbu.v0.EntityIdentifier parent_id = 5 ;
7172}
7273
7374message CurveGeometry {
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ service NamedSelections{
2121 rpc Delete (ansys .api .dbu .v0 .EntityIdentifier ) returns (google .protobuf .Empty );
2222
2323 rpc DeleteByName (DeleteByNameRequest ) returns (google .protobuf .Empty );
24+
25+ rpc SetName (SetNameRequest ) returns (SetNameResponse );
2426}
2527
2628message CreateRequest {
@@ -35,4 +37,12 @@ message GetAllResponse{
3537
3638message DeleteByNameRequest {
3739 string name = 1 ;
40+ }
41+
42+ message SetNameRequest {
43+ ansys.api.dbu.v0.EntityIdentifier id = 1 ;
44+ string new_name = 2 ;
45+ }
46+
47+ message SetNameResponse {
3848}
You can’t perform that action at this time.
0 commit comments