From a30c7a9fe485b0c6a918379a2d393a072621da2f Mon Sep 17 00:00:00 2001 From: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com> Date: Thu, 14 Mar 2024 16:58:32 +0100 Subject: [PATCH] sync: file sync performed by ansys-tools-repo-sync (#72) Co-authored-by: TFS_CASLService --- ansys/api/geometry/v0/bodies.proto | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ansys/api/geometry/v0/bodies.proto b/ansys/api/geometry/v0/bodies.proto index ef9da43..8019974 100644 --- a/ansys/api/geometry/v0/bodies.proto +++ b/ansys/api/geometry/v0/bodies.proto @@ -40,6 +40,10 @@ service Bodies rpc CreateExtrudedBody(CreateExtrudedBodyRequest) returns (Body); + rpc CreateSweepingProfile(CreateSweepingProfileRequest) returns (Body); + + rpc CreateSweepingChain(CreateSweepingChainRequest) returns (Body); + rpc GetVolume(ansys.api.dbu.v0.EntityIdentifier) returns(GetVolumeResponse); rpc GetTessellation(ansys.api.dbu.v0.EntityIdentifier) returns(GetTessellationResponse); @@ -174,6 +178,21 @@ message CreateExtrudedBodyFromFaceProfileRequest { double distance=4; } +message CreateSweepingProfileRequest{ + string name=1; + string parent=2; + Plane plane=3; + Geometries geometries=4; + repeated TrimmedCurve path = 5; +} + +message CreateSweepingChainRequest{ + string name=1; + string parent=2; + repeated TrimmedCurve chain = 3; + repeated TrimmedCurve path = 4; +} + message CreatePlanarBodyRequest { string name=1; string parent=2;