Skip to content

Commit 321a754

Browse files
Merge branch 'main' into release/0.4
2 parents 86d28ad + 3fc5498 commit 321a754

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

ansys/api/geometry/v0/commands.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,7 @@ message GetAssemblyResponse {
806806
repeated NamedSelection named_selections=6;
807807
map <string, CoordinateSystemList> component_coord_systems=7;
808808
map <string, int32> component_shared_topologies=8;
809+
repeated Beam beams=9;
809810
}
810811

811812
message MoveTranslateRequest{

ansys/api/geometry/v0/models.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ message NamedSelection {
197197
repeated Body bodies = 4;
198198
repeated Face faces = 5;
199199
repeated Edge edges = 6;
200-
repeated ansys.api.dbu.v0.EntityIdentifier beams = 7;
200+
repeated Beam beams = 7;
201201
repeated Curve design_points = 8;
202202
}
203203

ansys/api/geometry/v0/parts.proto

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ option csharp_namespace = "Ansys.Api.Geometry.V0.Parts";
1111
service Parts{
1212
rpc Get(ansys.api.dbu.v0.EntityIdentifier) returns(Part);
1313

14-
rpc GetAll(GetAllRequest) returns(GetAllResponse) ;
14+
rpc GetAll(GetAllRequest) returns(GetAllResponse);
15+
16+
rpc GetBeams(GetBeamsRequest) returns(GetBeamsResponse);
1517

1618
rpc ExportLargeSize(ExportRequest) returns(stream ansys.api.dbu.v0.StreamPackage);
1719

@@ -26,6 +28,14 @@ message GetAllResponse{
2628
repeated Part parts = 1;
2729
}
2830

31+
message GetBeamsRequest {
32+
ansys.api.dbu.v0.EntityIdentifier part = 1;
33+
}
34+
35+
message GetBeamsResponse {
36+
repeated Beam beams = 1;
37+
}
38+
2939
message ExportRequest{
3040
string id = 1;
3141
ansys.api.dbu.v0.PartExportFormat format = 2;

0 commit comments

Comments
 (0)