Check that the min extents of the box is less than or equal to the max extents.
| 175 | /// Check that the min extents of the box is |
| 176 | /// less than or equal to the max extents. |
| 177 | bool isValidBox() const { return (minExtents.x <= maxExtents.x) && |
| 178 | (minExtents.y <= maxExtents.y) && |
| 179 | (minExtents.z <= maxExtents.z); } |
| 180 | |
| 181 | /// Return the closest point of the box, relative to the passed point. |
| 182 | Point3F getClosestPoint( const Point3F &refPt ) const; |
no outgoing calls
no test coverage detected