Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync: file sync performed by ansys-tools-repo-sync #95

Merged
merged 1 commit into from
Nov 6, 2024
Merged
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
8 changes: 8 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,22 @@ service Commands{
rpc FaceOffset(FaceOffsetRequest) returns (CommandResponse);

rpc OffsetFacesSetRadius(OffsetFacesSetRadiusRequest) returns (CommandResponse);

rpc FullFillet(FullFilletRequest) returns (CommandResponse);
}

message FullFilletRequest {
repeated ansys.api.dbu.v0.EntityIdentifier faces = 1;
}

message OffsetFacesSetRadiusRequest {
ansys.api.dbu.v0.EntityIdentifier face = 1;
double radius = 2;
bool copy = 3;
OffsetMode offset_mode = 4;
ExtrudeType extrude_type = 5;
}

message FaceOffsetRequest {
ansys.api.dbu.v0.EntityIdentifier face1 = 1;
ansys.api.dbu.v0.EntityIdentifier face2 = 2;
Expand Down