Skip to content

Commit

Permalink
sync: file sync performed by ansys-tools-repo-sync (#98)
Browse files Browse the repository at this point in the history
Co-authored-by: tfs_caslservice <tfs_caslservice@cdcw10cslbld01>
  • Loading branch information
pyansys-ci-bot and tfs_caslservice authored Nov 19, 2024
1 parent 2a383ea commit f24a43b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,20 @@ service Commands{
rpc FullFillet(FullFilletRequest) returns (CommandResponse);

rpc ThickenFaces(ThickenFacesRequest) returns (CommandResponse);

rpc DraftFaces(DraftFacesRequest) returns (DraftFacesResponse);
}

message DraftFacesRequest {
repeated ansys.api.dbu.v0.EntityIdentifier faces = 1;
repeated ansys.api.dbu.v0.EntityIdentifier reference_faces = 2;
DraftSide draft_side = 3;
double draft_angle = 4;
ExtrudeType extrude_type = 5;
}

message DraftFacesResponse {
repeated Face created_faces = 1;
}

message ThickenFacesRequest {
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 @@ -563,3 +563,10 @@ message TrimmedSurface {
message Gap {
double distance = 1;
}

enum DraftSide {
DRAFTSIDE_NO_SPLIT = 0;
DRAFTSIDE_THIS = 1;
DRAFTSIDE_OTHER = 2;
DRAFTSIDE_BOTH = 3;
}

0 comments on commit f24a43b

Please sign in to comment.