puts "========"
puts "OCC29311"
puts "========"
puts ""
#################################################
# Implementation of the Oriented Bounding Boxes (OBB) functionality
#################################################

# Interferences of AABB

box b1 300 300 300 
box b2 100 100 100 50 50 50

if { [regexp {NOT interfered by AABB} [ isbbinterf b1 b2 ] ] } {
    puts "Error : Wrong check of AABBs interferences"
} else {
    puts "OK : check of AABBs interferences"
}

if { [regexp {NOT interfered by AABB} [ isbbinterf b2 b1 ] ] } {
    puts "Error : Wrong check of AABBs interferences"
} else {
    puts "OK : check of AABBs interferences"
}
