Skip to content

Commit 5667368

Browse files
pyansys-ci-bottfs_caslservice
andauthored
sync: file sync performed by ansys-tools-repo-sync (#170)
Co-authored-by: tfs_caslservice <tfs_caslservice@cdcw22cslbld01>
1 parent 18940c2 commit 5667368

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

ansys/api/geometry/v0/edges.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
5666
message IsDeletedResponse{
5767
bool deleted=1;
5868
}

ansys/api/geometry/v0/models.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 {
523525
message Vertex {
524526
Point position = 1;
525527
repeated Edge edges = 2;
528+
ansys.api.dbu.v0.EntityIdentifier id = 3;
526529
}
527530
message TrimmedCurveList {
528531
repeated TrimmedCurve curves = 1;

0 commit comments

Comments
 (0)