0029484: Avoid inheritance of the BRepAlgoAPI_Check from BRepBuilderAPI_MakeShape
[occt.git] / tests / bugs / modalg_7 / bug29311_6
CommitLineData
1a0339b4 1puts "========"
2puts "OCC29311"
3puts "========"
4puts ""
5#################################################
6# Implementation of the Oriented Bounding Boxes (OBB) functionality
7#################################################
8
9# Interferences of AABB
10
11box b1 300 300 300
12box b2 100 100 100 50 50 50
13
14if { [regexp {NOT interfered by AABB} [ isbbinterf b1 b2 ] ] } {
15 puts "Error : Wrong check of AABBs interferences"
16} else {
17 puts "OK : check of AABBs interferences"
18}
19
20if { [regexp {NOT interfered by AABB} [ isbbinterf b2 b1 ] ] } {
21 puts "Error : Wrong check of AABBs interferences"
22} else {
23 puts "OK : check of AABBs interferences"
24}