Skip to content
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
22 changes: 22 additions & 0 deletions ansys/api/geometry/v0/commands.proto
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ service Commands{
rpc CreateBeamCircularProfile(CreateBeamCircularProfileRequest) returns(CreateBeamCircularProfileResponse);

rpc CreateBeamBodyLine(CreateBeamBodyLineRequest) returns (CreateBeamBodyLineResponse);

rpc CreateBeamBodyLines(CreateBeamBodyLinesRequest) returns (CreateBeamBodyLinesResponse);

rpc GetRootComponent(Empty) returns (GetRootComponentResponse);

rpc FillFaces(FillFacesRequest) returns (Empty);

rpc CreateDesignPoint(CreateDesignPointRequest) returns (CreateDesignPointResponse);

rpc CreateDesignPoints(CreateDesignPointsRequest) returns (CreateDesignPointsResponse);

rpc CreateDesignCurvesFromProfile(CreateDesignCurvesFromProfileRequest) returns (CreateDesignCurvesFromProfileResponse);

rpc AssignMidSurfaceThickness(AssignMidSurfaceThicknessRequest) returns (Empty);
Expand Down Expand Up @@ -85,6 +89,15 @@ message CreateBeamBodyLineResponse {
string id=1;
}

message CreateBeamBodyLinesRequest {
string profile=1;
repeated Line lines=2;
}

message CreateBeamBodyLinesResponse {
repeated string ids=1;
}

message GetRootComponentResponse{
string id=1;
}
Expand All @@ -102,6 +115,15 @@ message CreateDesignPointResponse {
string id=1;
}

message CreateDesignPointsRequest {
repeated Point points = 1;
string parent=2;
}

message CreateDesignPointsResponse {
repeated string ids =1;
}

message CreateDesignCurvesFromProfileRequest {
Geometries geometries=1;
string parent=2;
Expand Down