| 48 | |
| 49 | template<typename T> |
| 50 | static tuple split1( const Box<T> &box, int axis ) |
| 51 | { |
| 52 | Box<T> low, high; |
| 53 | BoxAlgo::split( box, low, high, axis ); |
| 54 | return make_tuple( low, high ); |
| 55 | } |
| 56 | |
| 57 | template<typename T> |
| 58 | static tuple split2( const Box<T> &box ) |