Skip to content

Commit 073ae02

Browse files
Merge branch 'main' into release/0.4
2 parents 0c6d95c + 5667368 commit 073ae02

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
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: |

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: 4 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;
@@ -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

848852
message SetObjectNameRequest{

0 commit comments

Comments
 (0)