From c66bcd7c427a75651b66b5677a2bd1782a0fbe08 Mon Sep 17 00:00:00 2001 From: tfs_caslservice Date: Thu, 31 Oct 2024 22:01:38 -0400 Subject: [PATCH] sync: add changes from local folder --- ansys/api/geometry/v0/commands.proto | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ansys/api/geometry/v0/commands.proto b/ansys/api/geometry/v0/commands.proto index 634ef43..688b499 100644 --- a/ansys/api/geometry/v0/commands.proto +++ b/ansys/api/geometry/v0/commands.proto @@ -76,10 +76,17 @@ service Commands{ rpc RevolveCurves(RevolveCurvesRequest) returns (google.protobuf.Empty); rpc Chamfer(ChamferRequest) returns (ChamferResponse); + + rpc Fillet(FilletRequest) returns (ChamferResponse); +} + +message FilletRequest { + repeated ansys.api.dbu.v0.EntityIdentifier ids = 1; + double radius = 2; } message ChamferRequest { - repeated string ids = 1; + repeated ansys.api.dbu.v0.EntityIdentifier ids = 1; double distance = 2; }