Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ message OffsetFacesSetRadiusRequest {
bool copy = 3;
OffsetMode offset_mode = 4;
ExtrudeType extrude_type = 5;
repeated ansys.api.dbu.v0.EntityIdentifier faces = 6;
}

message FaceOffsetRequest {
Expand Down Expand Up @@ -795,6 +796,7 @@ message MoveTranslateRequest{
repeated ansys.api.dbu.v0.EntityIdentifier selection = 1;
Direction direction = 2;
double distance = 3;
ansys.api.dbu.v0.EntityIdentifier named_selection = 4;
}

message MoveRotateRequest{
Expand Down
7 changes: 7 additions & 0 deletions ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ message TrimmedCurve {
// A edge.
message Edge{
string id = 1;
Body parent = 2;
CurveType curve_type = 10;
string owner_name = 11;
string export_id = 12;
Expand All @@ -94,6 +95,7 @@ message Edge{
// A face.
message Face{
string id = 1;
Body parent = 2;
SurfaceType surface_type = 10;
string owner_name = 11;
string export_id = 12;
Expand Down Expand Up @@ -179,6 +181,11 @@ message NamedSelection {
string id = 1;
string name = 2;
repeated ansys.api.dbu.v0.EntityIdentifier selection=3;
repeated Body bodies = 4;
repeated Face faces = 5;
repeated Edge edges = 6;
repeated ansys.api.dbu.v0.EntityIdentifier beams = 7;
repeated Curve design_points = 8;
}

//
Expand Down