File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,26 @@ service PrepareTools{
2828 rpc ExtractVolumeFromEdgeLoops (ExtractVolumeFromEdgeLoopsRequest ) returns (VolumeExtractionResponse );
2929
3030 rpc EnhancedShareTopology (ShareTopologyRequest ) returns (EnhancedRepairToolMessage );
31+
32+ rpc CreateEnclosureBox (CreateEnclosureBoxRequest ) returns (CreateEnclosureResponse );
33+ }
34+
35+ message CreateEnclosureBoxRequest {
36+ repeated ansys.api.geometry.v0.Body bodies = 1 ;
37+ double x_low = 2 ;
38+ double x_high = 3 ;
39+ double y_low = 4 ;
40+ double y_high = 5 ;
41+ double z_low = 6 ;
42+ double z_high = 7 ;
3143}
3244
45+ message CreateEnclosureResponse {
46+ // Whether the enclosure is successful.
47+ bool success = 1 ;
48+ // The bodies representing the enclosure.
49+ repeated Body created_bodies = 2 ;
50+ }
3351
3452message FixInterferenceRequest {
3553 repeated ansys.api.geometry.v0.Body selection = 1 ;
You can’t perform that action at this time.
0 commit comments