( box1, box2 )
| 172 | |
| 173 | @staticmethod |
| 174 | def compareBBox( box1, box2 ): |
| 175 | errorTolerance = imath.V3d(1e-5, 1e-5, 1e-5) |
| 176 | boxTmp = imath.Box3d( box1.min() - errorTolerance, box1.max() + errorTolerance ) |
| 177 | if not IECore.BoxAlgo.contains( boxTmp, box2 ): |
| 178 | return False |
| 179 | boxTmp = imath.Box3d( box2.min() - errorTolerance, box2.max() + errorTolerance ) |
| 180 | if not IECore.BoxAlgo.contains( boxTmp, box1 ): |
| 181 | return False |
| 182 | return True |
| 183 | |
| 184 | def testRandomStaticHierarchy( self ) : |
| 185 |
no test coverage detected