File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ service Edges{
1414
1515 rpc GetFaces (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetFacesResponse );
1616
17+ rpc GetVertices (GetVerticesRequest ) returns (GetVerticesResponse );
18+
1719 rpc GetLength (ansys .api .dbu .v0 .EntityIdentifier ) returns (GetLengthResponse );
1820
1921 rpc IsDeleted (ansys .api .dbu .v0 .EntityIdentifier ) returns (IsDeletedResponse );
@@ -53,6 +55,14 @@ message GetFacesResponse{
5355 repeated Face faces = 1 ;
5456}
5557
58+ message GetVerticesRequest {
59+ ansys.api.dbu.v0.EntityIdentifier edge = 1 ;
60+ }
61+
62+ message GetVerticesResponse {
63+ repeated Vertex vertices = 1 ;
64+ }
65+
5666message IsDeletedResponse {
5767 bool deleted = 1 ;
5868}
Original file line number Diff line number Diff line change @@ -200,6 +200,8 @@ message NamedSelection {
200200 repeated Edge edges = 6 ;
201201 repeated Beam beams = 7 ;
202202 repeated Curve design_points = 8 ;
203+ repeated Vertex vertices = 9 ;
204+ repeated Component components = 10 ;
203205}
204206
205207//
@@ -523,6 +525,7 @@ message UpdateState {
523525message Vertex {
524526 Point position = 1 ;
525527 repeated Edge edges = 2 ;
528+ ansys.api.dbu.v0.EntityIdentifier id = 3 ;
526529}
527530message TrimmedCurveList {
528531 repeated TrimmedCurve curves = 1 ;
You can’t perform that action at this time.
0 commit comments