Skip to content

Commit 144978f

Browse files
committed
Merge branch 'main' into release/0.4
2 parents 588aee8 + a6341fc commit 144978f

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

ansys/api/geometry/v0/bodies.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ service Bodies
3131
rpc CreateBodyFromFace(CreateBodyFromFaceRequest) returns (Body);
3232

3333
rpc CreateExtrudedBodyFromFaceProfile(CreateExtrudedBodyFromFaceProfileRequest) returns (Body);
34+
35+
rpc CreateExtrudedBodyFromLoftProfiles(CreateExtrudedBodyFromLoftProfilesRequest) returns (Body);
3436

3537
rpc Delete(ansys.api.dbu.v0.EntityIdentifier) returns (google.protobuf.Empty);
3638

@@ -178,6 +180,14 @@ message CreateExtrudedBodyFromFaceProfileRequest {
178180
double distance=4;
179181
}
180182

183+
message CreateExtrudedBodyFromLoftProfilesRequest {
184+
string name=1;
185+
string parent=2;
186+
repeated TrimmedCurveList profiles = 3;
187+
bool periodic=4;
188+
bool ruled=5;
189+
}
190+
181191
message CreateSweepingProfileRequest{
182192
string name=1;
183193
string parent=2;

ansys/api/geometry/v0/models.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ message Component{
152152
string master_id=5;
153153
string parent_id=6;
154154
Part part_master=7;
155+
string display_name=8;
155156
}
156157

157158
//

0 commit comments

Comments
 (0)