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{
28
28
rpc ExtractVolumeFromEdgeLoops (ExtractVolumeFromEdgeLoopsRequest ) returns (VolumeExtractionResponse );
29
29
30
30
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 ;
31
43
}
32
44
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
+ }
33
51
34
52
message FixInterferenceRequest {
35
53
repeated ansys.api.geometry.v0.Body selection = 1 ;
You can’t perform that action at this time.
0 commit comments