| 88 | |
| 89 | template<class Dim, int n> |
| 90 | forceinline bool |
| 91 | ManBox<Dim,n>::overlap(const ManBox<Dim,n>& box) const { |
| 92 | for (int i=0; i<n; i++) |
| 93 | if ((d[i].sec() <= box.d[i].lsc()) || (box.d[i].sec() <= d[i].lsc())) |
| 94 | return false; |
| 95 | return true; |
| 96 | } |
| 97 | |
| 98 | template<class Dim, int n> |
| 99 | forceinline ExecStatus |