Skip to content

Commit

Permalink
sync: file sync performed by ansys-tools-repo-sync (#90)
Browse files Browse the repository at this point in the history
Co-authored-by: tfs_caslservice <tfs_caslservice@PDUCASLVM02>
  • Loading branch information
pyansys-ci-bot and tfs_caslservice authored Oct 11, 2024
1 parent 4c20413 commit 0e7ebcb
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ansys/api/geometry/v0/bodies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,14 @@ service Bodies
rpc Map(MapRequest) returns (google.protobuf.Empty);

rpc Mirror(MirrorRequest) returns (google.protobuf.Empty);

rpc CreateSurfaceBody(CreateSurfaceBodyRequest) returns (Body);
}

message CreateSurfaceBodyRequest {
string name = 1;
string parent = 2;
TrimmedSurface trimmed_surface = 3;
}

message MirrorRequest {
Expand Down
9 changes: 9 additions & 0 deletions ansys/api/geometry/v0/models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,15 @@ message Surface {
Direction axis = 7;
}

message TrimmedSurface {
Surface surface = 1;
SurfaceType type = 2;
double u_min = 3;
double u_max = 4;
double v_min = 5;
double v_max = 6;
}

message Gap {
double distance = 1;
}

0 comments on commit 0e7ebcb

Please sign in to comment.