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 #109

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
30 changes: 30 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,36 @@ service Commands{
rpc RevolvePoints(RevolvePointsRequest) returns (CreatedCurvesCommandResponse);

rpc RevolvePointsByHelix(RevolvePointsByHelixRequest) returns (CreatedCurvesCommandResponse);

rpc CombineIntersectBodies(CombineIntersectBodiesRequest) returns (CommandResponse);

rpc CombineMergeBodies(CombineMergeBodiesRequest) returns (CommandResponse);

rpc MergeBodies(MergeBodiesRequest) returns (CommandResponse);

rpc ProjectToSolid(ProjectToSolidRequest) returns (CommandResponse);
}

message CombineIntersectBodiesRequest {
repeated ansys.api.dbu.v0.EntityIdentifier target_selection = 1;
repeated ansys.api.dbu.v0.EntityIdentifier tool_selection = 2;
}

message CombineMergeBodiesRequest {
repeated ansys.api.dbu.v0.EntityIdentifier target_selection = 1;
}

message MergeBodiesRequest {
repeated ansys.api.dbu.v0.EntityIdentifier target_selection = 1;
bool abort_on_error = 2;
bool can_make_independent = 3;
bool create_imprints = 4;
}

message ProjectToSolidRequest {
repeated ansys.api.dbu.v0.EntityIdentifier selection = 1;
repeated ansys.api.dbu.v0.EntityIdentifier target_faces = 2;
ansys.api.dbu.v0.EntityIdentifier direction_selection = 3;
}

message SweepFacesRequest {
Expand Down
Loading