| 18 | namespace |
| 19 | { |
| 20 | inline bool Inside(double q[3], double gbounds[6]) |
| 21 | { |
| 22 | return gbounds[0] <= q[0] && q[0] <= gbounds[1] && gbounds[2] <= q[1] && q[1] <= gbounds[3] && |
| 23 | gbounds[4] <= q[2] && q[2] <= gbounds[5]; |
| 24 | } |
| 25 | |
| 26 | //------------------------------------------------------------------------------ |
| 27 | // Utility class used to store bin properties |