We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23a14a9 commit c66bcd7Copy full SHA for c66bcd7
ansys/api/geometry/v0/commands.proto
@@ -76,10 +76,17 @@ service Commands{
76
rpc RevolveCurves(RevolveCurvesRequest) returns (google.protobuf.Empty);
77
78
rpc Chamfer(ChamferRequest) returns (ChamferResponse);
79
+
80
+ rpc Fillet(FilletRequest) returns (ChamferResponse);
81
+}
82
83
+message FilletRequest {
84
+ repeated ansys.api.dbu.v0.EntityIdentifier ids = 1;
85
+ double radius = 2;
86
}
87
88
message ChamferRequest {
- repeated string ids = 1;
89
90
double distance = 2;
91
92
0 commit comments