File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 7272 path : ansys-api-geometry-artifacts
7373
7474 - name : Release
75- uses : softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2 .2
75+ uses : softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3 .2
7676 with :
7777 generate_release_notes : true
7878 files : |
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 ;
@@ -843,6 +846,7 @@ message TessellationOptions{
843846 double maximum_aspect_ratio = 3 ;
844847 double maximum_edge_length = 4 ;
845848 bool watertight = 5 ;
849+ double curve_deviation = 6 ;
846850}
847851
848852message SetObjectNameRequest {
You can’t perform that action at this time.
0 commit comments